Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
0002 #ifndef _UAPI_LINUX_SIGNAL_H
0003 #define _UAPI_LINUX_SIGNAL_H
0004 
0005 #include <asm/signal.h>
0006 #include <asm/siginfo.h>
0007 
0008 #define SS_ONSTACK  1
0009 #define SS_DISABLE  2
0010 
0011 /* bit-flags */
0012 #define SS_AUTODISARM   (1U << 31)  /* disable sas during sighandling */
0013 /* mask for all SS_xxx flags */
0014 #define SS_FLAG_BITS    SS_AUTODISARM
0015 
0016 #endif /* _UAPI_LINUX_SIGNAL_H */