mirror of
https://github.com/fluencelabs/musl
synced 2025-07-31 22:31:58 +00:00
move signal.h definition of stack_t to arch-specific bits
it's different at least on mips. mips version will be fixed in a separate commit to show the change.
This commit is contained in:
@@ -46,6 +46,12 @@ typedef struct __ucontext {
|
||||
sigset_t uc_sigmask;
|
||||
} ucontext_t;
|
||||
|
||||
typedef struct sigaltstack {
|
||||
void *ss_sp;
|
||||
int ss_flags;
|
||||
size_t ss_size;
|
||||
} stack_t;
|
||||
|
||||
#define SA_NOCLDSTOP 1
|
||||
#define SA_NOCLDWAIT 0x10000
|
||||
#define SA_SIGINFO 8
|
||||
|
Reference in New Issue
Block a user