diff options
Diffstat (limited to 'arch/microblaze/bits/signal.h')
-rw-r--r-- | arch/microblaze/bits/signal.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/arch/microblaze/bits/signal.h b/arch/microblaze/bits/signal.h index 730ab90b..01fa7bf5 100644 --- a/arch/microblaze/bits/signal.h +++ b/arch/microblaze/bits/signal.h @@ -21,6 +21,12 @@ typedef struct { } mcontext_t; #endif +struct sigaltstack { + void *ss_sp; + int ss_flags; + size_t ss_size; +}; + typedef struct __ucontext { unsigned long uc_flags; struct __ucontext *uc_link; @@ -29,12 +35,6 @@ 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 2 #define SA_SIGINFO 4 |