From bd5f221eaa16fcc13f050201883428afa3a9d0c0 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Tue, 18 Mar 2014 23:12:40 -0400 Subject: 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. --- arch/x32/bits/signal.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'arch/x32') diff --git a/arch/x32/bits/signal.h b/arch/x32/bits/signal.h index ecbb8139..67056c9e 100644 --- a/arch/x32/bits/signal.h +++ b/arch/x32/bits/signal.h @@ -69,6 +69,12 @@ typedef struct __ucontext { unsigned long 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 -- cgit v1.2.1