mirror of
https://github.com/fluencelabs/musl
synced 2025-06-25 20:51:53 +00:00
ucontext is no longer in the standard, so use gnu-friendly struct name
note that this header is still bogus and needs a lot of work and factoring into arch-dependent parts...
This commit is contained in:
@ -18,9 +18,9 @@ typedef struct {
|
|||||||
unsigned long __oldmask, __cr2;
|
unsigned long __oldmask, __cr2;
|
||||||
} mcontext_t;
|
} mcontext_t;
|
||||||
|
|
||||||
typedef struct __ucontext {
|
typedef struct ucontext {
|
||||||
unsigned long uc_flags;
|
unsigned long uc_flags;
|
||||||
struct __ucontext *uc_link;
|
struct ucontext *uc_link;
|
||||||
stack_t uc_stack;
|
stack_t uc_stack;
|
||||||
mcontext_t uc_mcontext;
|
mcontext_t uc_mcontext;
|
||||||
sigset_t uc_sigmask;
|
sigset_t uc_sigmask;
|
||||||
|
Reference in New Issue
Block a user