signal.h (cdd38c5f1ce4398ec58fec95904b75824daab7b5) | signal.h (72113d0a7d90d950c7c9a87ab905bffb6bc5752d) |
---|---|
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2/* 3 * Modified 1998-2001, 2003 4 * David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co 5 * 6 * Unfortunately, this file is being included by bits/signal.h in 7 * glibc-2.x. Hence the #ifdef __KERNEL__ ugliness. 8 */ --- 76 unchanged lines hidden (view full) --- 85# include <linux/types.h> 86 87/* Avoid too many header ordering problems. */ 88struct siginfo; 89 90typedef struct sigaltstack { 91 void __user *ss_sp; 92 int ss_flags; | 1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2/* 3 * Modified 1998-2001, 2003 4 * David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co 5 * 6 * Unfortunately, this file is being included by bits/signal.h in 7 * glibc-2.x. Hence the #ifdef __KERNEL__ ugliness. 8 */ --- 76 unchanged lines hidden (view full) --- 85# include <linux/types.h> 86 87/* Avoid too many header ordering problems. */ 88struct siginfo; 89 90typedef struct sigaltstack { 91 void __user *ss_sp; 92 int ss_flags; |
93 size_t ss_size; | 93 __kernel_size_t ss_size; |
94} stack_t; 95 96 97# endif /* !__ASSEMBLY__ */ 98#endif /* _UAPI_ASM_IA64_SIGNAL_H */ | 94} stack_t; 95 96 97# endif /* !__ASSEMBLY__ */ 98#endif /* _UAPI_ASM_IA64_SIGNAL_H */ |