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/arm/bits/signal.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'arch/arm/bits') diff --git a/arch/arm/bits/signal.h b/arch/arm/bits/signal.h index a658ef63..6d91f70f 100644 --- a/arch/arm/bits/signal.h +++ b/arch/arm/bits/signal.h @@ -27,6 +27,12 @@ typedef struct __ucontext { unsigned long long uc_regspace[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