diff options
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/bits/signal.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/powerpc/bits/signal.h b/arch/powerpc/bits/signal.h index 7113b2ff..3f9f810f 100644 --- a/arch/powerpc/bits/signal.h +++ b/arch/powerpc/bits/signal.h @@ -49,6 +49,12 @@ typedef struct { #endif +struct sigaltstack { + void *ss_sp; + int ss_flags; + size_t ss_size; +}; + typedef struct __ucontext { unsigned long uc_flags; struct __ucontext *uc_link; @@ -60,12 +66,6 @@ typedef struct __ucontext { mcontext_t uc_mcontext; } ucontext_t; -typedef struct sigaltstack { - void *ss_sp; - int ss_flags; - size_t ss_size; -} stack_t; - #define SA_NOCLDSTOP 1U #define SA_NOCLDWAIT 2U #define SA_SIGINFO 4U |