signal.h (cdd38c5f1ce4398ec58fec95904b75824daab7b5) | signal.h (72113d0a7d90d950c7c9a87ab905bffb6bc5752d) |
---|---|
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2#ifndef _UAPI__SPARC_SIGNAL_H 3#define _UAPI__SPARC_SIGNAL_H 4 | 1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2#ifndef _UAPI__SPARC_SIGNAL_H 3#define _UAPI__SPARC_SIGNAL_H 4 |
5#include <asm/posix_types.h> |
|
5#include <asm/sigcontext.h> 6#include <linux/compiler.h> 7 8 9/* On the Sparc the signal handlers get passed a 'sub-signal' code 10 * for certain signal types, which we document here. 11 */ 12#define SIGHUP 1 --- 153 unchanged lines hidden (view full) --- 166 unsigned long sa_flags; 167 void (*sa_restorer)(void); /* not used by Linux/SPARC yet */ 168}; 169#endif 170 171typedef struct sigaltstack { 172 void __user *ss_sp; 173 int ss_flags; | 6#include <asm/sigcontext.h> 7#include <linux/compiler.h> 8 9 10/* On the Sparc the signal handlers get passed a 'sub-signal' code 11 * for certain signal types, which we document here. 12 */ 13#define SIGHUP 1 --- 153 unchanged lines hidden (view full) --- 167 unsigned long sa_flags; 168 void (*sa_restorer)(void); /* not used by Linux/SPARC yet */ 169}; 170#endif 171 172typedef struct sigaltstack { 173 void __user *ss_sp; 174 int ss_flags; |
174 size_t ss_size; | 175 __kernel_size_t ss_size; |
175} stack_t; 176 177 178#endif /* !(__ASSEMBLY__) */ 179 180#endif /* _UAPI__SPARC_SIGNAL_H */ | 176} stack_t; 177 178 179#endif /* !(__ASSEMBLY__) */ 180 181#endif /* _UAPI__SPARC_SIGNAL_H */ |