signal.h (cdd38c5f1ce4398ec58fec95904b75824daab7b5) | signal.h (72113d0a7d90d950c7c9a87ab905bffb6bc5752d) |
---|---|
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2/* 3 * include/asm-xtensa/signal.h 4 * 5 * Swiped from SH. 6 * 7 * This file is subject to the terms and conditions of the GNU General Public 8 * License. See the file "COPYING" in the main directory of this archive --- 89 unchanged lines hidden (view full) --- 98#define sa_handler _u._sa_handler 99#define sa_sigaction _u._sa_sigaction 100 101#endif /* __KERNEL__ */ 102 103typedef struct sigaltstack { 104 void *ss_sp; 105 int ss_flags; | 1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2/* 3 * include/asm-xtensa/signal.h 4 * 5 * Swiped from SH. 6 * 7 * This file is subject to the terms and conditions of the GNU General Public 8 * License. See the file "COPYING" in the main directory of this archive --- 89 unchanged lines hidden (view full) --- 98#define sa_handler _u._sa_handler 99#define sa_sigaction _u._sa_sigaction 100 101#endif /* __KERNEL__ */ 102 103typedef struct sigaltstack { 104 void *ss_sp; 105 int ss_flags; |
106 size_t ss_size; | 106 __kernel_size_t ss_size; |
107} stack_t; 108 109#endif /* __ASSEMBLY__ */ 110#endif /* _UAPI_XTENSA_SIGNAL_H */ | 107} stack_t; 108 109#endif /* __ASSEMBLY__ */ 110#endif /* _UAPI_XTENSA_SIGNAL_H */ |