signal.h (cdd38c5f1ce4398ec58fec95904b75824daab7b5) signal.h (72113d0a7d90d950c7c9a87ab905bffb6bc5752d)
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2#ifndef _UAPI__ASM_GENERIC_SIGNAL_H
3#define _UAPI__ASM_GENERIC_SIGNAL_H
4
5#include <linux/types.h>
6
7#define _NSIG 64
8#define _NSIG_BPW __BITS_PER_LONG

--- 71 unchanged lines hidden (view full) ---

80#endif
81 sigset_t sa_mask; /* mask last for extensibility */
82};
83#endif
84
85typedef struct sigaltstack {
86 void __user *ss_sp;
87 int ss_flags;
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2#ifndef _UAPI__ASM_GENERIC_SIGNAL_H
3#define _UAPI__ASM_GENERIC_SIGNAL_H
4
5#include <linux/types.h>
6
7#define _NSIG 64
8#define _NSIG_BPW __BITS_PER_LONG

--- 71 unchanged lines hidden (view full) ---

80#endif
81 sigset_t sa_mask; /* mask last for extensibility */
82};
83#endif
84
85typedef struct sigaltstack {
86 void __user *ss_sp;
87 int ss_flags;
88 size_t ss_size;
88 __kernel_size_t ss_size;
89} stack_t;
90
91#endif /* __ASSEMBLY__ */
92
93#endif /* _UAPI__ASM_GENERIC_SIGNAL_H */
89} stack_t;
90
91#endif /* __ASSEMBLY__ */
92
93#endif /* _UAPI__ASM_GENERIC_SIGNAL_H */