signal.h (cdd38c5f1ce4398ec58fec95904b75824daab7b5) | signal.h (72113d0a7d90d950c7c9a87ab905bffb6bc5752d) |
---|---|
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2#ifndef _UAPI_ASMARM_SIGNAL_H 3#define _UAPI_ASMARM_SIGNAL_H 4 5#include <linux/types.h> 6 7/* Avoid too many header ordering problems. */ 8struct siginfo; --- 79 unchanged lines hidden (view full) --- 88#define sa_handler _u._sa_handler 89#define sa_sigaction _u._sa_sigaction 90 91#endif /* __KERNEL__ */ 92 93typedef struct sigaltstack { 94 void __user *ss_sp; 95 int ss_flags; | 1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2#ifndef _UAPI_ASMARM_SIGNAL_H 3#define _UAPI_ASMARM_SIGNAL_H 4 5#include <linux/types.h> 6 7/* Avoid too many header ordering problems. */ 8struct siginfo; --- 79 unchanged lines hidden (view full) --- 88#define sa_handler _u._sa_handler 89#define sa_sigaction _u._sa_sigaction 90 91#endif /* __KERNEL__ */ 92 93typedef struct sigaltstack { 94 void __user *ss_sp; 95 int ss_flags; |
96 size_t ss_size; | 96 __kernel_size_t ss_size; |
97} stack_t; 98 99 100#endif /* _UAPI_ASMARM_SIGNAL_H */ | 97} stack_t; 98 99 100#endif /* _UAPI_ASMARM_SIGNAL_H */ |