diff options
author | Rich Felker <dalias@aerifal.cx> | 2014-03-18 23:12:40 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2014-03-18 23:12:40 -0400 |
commit | bd5f221eaa16fcc13f050201883428afa3a9d0c0 (patch) | |
tree | 6087e2f8744927a23112275b2fa46a96a77a7e2f /arch/x86_64/bits | |
parent | 25faa2034de38f7d8cc919e61e55e7067584077d (diff) | |
download | musl-bd5f221eaa16fcc13f050201883428afa3a9d0c0.tar.gz musl-bd5f221eaa16fcc13f050201883428afa3a9d0c0.tar.xz musl-bd5f221eaa16fcc13f050201883428afa3a9d0c0.zip |
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.
Diffstat (limited to 'arch/x86_64/bits')
-rw-r--r-- | arch/x86_64/bits/signal.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86_64/bits/signal.h b/arch/x86_64/bits/signal.h index d5f01ced..910e4ecb 100644 --- a/arch/x86_64/bits/signal.h +++ b/arch/x86_64/bits/signal.h @@ -69,6 +69,12 @@ typedef struct __ucontext { unsigned long __fpregs_mem[64]; } ucontext_t; +typedef struct sigaltstack { + void *ss_sp; + int ss_flags; + size_t ss_size; +} stack_t; + #define SA_NOCLDSTOP 1 #define SA_NOCLDWAIT 2 #define SA_SIGINFO 4 |