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/mips/bits/signal.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'arch/mips') diff --git a/arch/mips/bits/signal.h b/arch/mips/bits/signal.h index f26c37da..d09558fe 100644 --- a/arch/mips/bits/signal.h +++ b/arch/mips/bits/signal.h @@ -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 -- cgit v1.2.1