xref: /linux/include/uapi/linux/signal.h (revision 498495dba268b20e8eadd7fe93c140c68b6cc9d2)
1*6f52b16cSGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2607ca46eSDavid Howells #ifndef _UAPI_LINUX_SIGNAL_H
3607ca46eSDavid Howells #define _UAPI_LINUX_SIGNAL_H
4607ca46eSDavid Howells 
5607ca46eSDavid Howells #include <asm/signal.h>
6607ca46eSDavid Howells #include <asm/siginfo.h>
7607ca46eSDavid Howells 
8031b6566SAl Viro #define SS_ONSTACK	1
9031b6566SAl Viro #define SS_DISABLE	2
10607ca46eSDavid Howells 
112a742138SStas Sergeev /* bit-flags */
1291c61805SAndy Lutomirski #define SS_AUTODISARM	(1U << 31)	/* disable sas during sighandling */
13407bc16aSStas Sergeev /* mask for all SS_xxx flags */
142a742138SStas Sergeev #define SS_FLAG_BITS	SS_AUTODISARM
15407bc16aSStas Sergeev 
16607ca46eSDavid Howells #endif /* _UAPI_LINUX_SIGNAL_H */
17