mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-03-08 04:24:33 +01:00
std.os.linux: minor NFC corrections to hexagon ucontext_t and mcontext_t
This commit is contained in:
parent
9760068826
commit
98af7f34e9
1 changed files with 3 additions and 3 deletions
|
|
@ -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,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue