hc
2023-12-06 08f87f769b595151be1afeff53e144f543faa614
kernel/arch/x86/include/uapi/asm/signal.h
....@@ -62,30 +62,6 @@
6262 #define SIGRTMIN 32
6363 #define SIGRTMAX _NSIG
6464
65
-/*
66
- * SA_FLAGS values:
67
- *
68
- * SA_ONSTACK indicates that a registered stack_t will be used.
69
- * SA_RESTART flag to get restarting signals (which were the default long ago)
70
- * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop.
71
- * SA_RESETHAND clears the handler when the signal is delivered.
72
- * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies.
73
- * SA_NODEFER prevents the current signal from being masked in the handler.
74
- *
75
- * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
76
- * Unix names RESETHAND and NODEFER respectively.
77
- */
78
-#define SA_NOCLDSTOP 0x00000001u
79
-#define SA_NOCLDWAIT 0x00000002u
80
-#define SA_SIGINFO 0x00000004u
81
-#define SA_ONSTACK 0x08000000u
82
-#define SA_RESTART 0x10000000u
83
-#define SA_NODEFER 0x40000000u
84
-#define SA_RESETHAND 0x80000000u
85
-
86
-#define SA_NOMASK SA_NODEFER
87
-#define SA_ONESHOT SA_RESETHAND
88
-
8965 #define SA_RESTORER 0x04000000
9066
9167 #define MINSIGSTKSZ 2048