zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 98af7f34e96ff8e2caaaf579df6ad136bb17f848 (tree)
parent 9760068826e01e5540da9168d2f02e15957a99cc
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Mon,  6 Oct 2025 18:12:46 +0200

std.os.linux: minor NFC corrections to hexagon ucontext_t and mcontext_t

Diffstat:
Mlib/std/os/linux/hexagon.zig | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/std/os/linux/hexagon.zig b/lib/std/os/linux/hexagon.zig @@ -254,13 +254,13 @@ pub const mcontext_t = extern struct { badva: u32, cs0: u32, cs1: u32, - _pad2: u32, + _pad1: u32, }; pub const ucontext_t = extern struct { - flags: usize, + flags: u32, link: ?*ucontext_t, stack: stack_t, mcontext: mcontext_t, - sigmask: [2]u32, + sigmask: sigset_t, };