1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ 2*4882a593Smuzhiyun #ifndef _UAPI_LINUX_SIGNAL_H 3*4882a593Smuzhiyun #define _UAPI_LINUX_SIGNAL_H 4*4882a593Smuzhiyun 5*4882a593Smuzhiyun #include <asm/signal.h> 6*4882a593Smuzhiyun #include <asm/siginfo.h> 7*4882a593Smuzhiyun 8*4882a593Smuzhiyun #define SS_ONSTACK 1 9*4882a593Smuzhiyun #define SS_DISABLE 2 10*4882a593Smuzhiyun 11*4882a593Smuzhiyun /* bit-flags */ 12*4882a593Smuzhiyun #define SS_AUTODISARM (1U << 31) /* disable sas during sighandling */ 13*4882a593Smuzhiyun /* mask for all SS_xxx flags */ 14*4882a593Smuzhiyun #define SS_FLAG_BITS SS_AUTODISARM 15*4882a593Smuzhiyun 16*4882a593Smuzhiyun #endif /* _UAPI_LINUX_SIGNAL_H */ 17