hc
2024-05-10 37f49e37ab4cb5d0bc4c60eb5c6d4dd57db767bb
kernel/arch/ia64/include/uapi/asm/signal.h
....@@ -53,30 +53,6 @@
5353 #define SIGRTMIN 32
5454 #define SIGRTMAX _NSIG
5555
56
-/*
57
- * SA_FLAGS values:
58
- *
59
- * SA_ONSTACK indicates that a registered stack_t will be used.
60
- * SA_RESTART flag to get restarting signals (which were the default long ago)
61
- * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop.
62
- * SA_RESETHAND clears the handler when the signal is delivered.
63
- * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies.
64
- * SA_NODEFER prevents the current signal from being masked in the handler.
65
- *
66
- * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single
67
- * Unix names RESETHAND and NODEFER respectively.
68
- */
69
-#define SA_NOCLDSTOP 0x00000001
70
-#define SA_NOCLDWAIT 0x00000002
71
-#define SA_SIGINFO 0x00000004
72
-#define SA_ONSTACK 0x08000000
73
-#define SA_RESTART 0x10000000
74
-#define SA_NODEFER 0x40000000
75
-#define SA_RESETHAND 0x80000000
76
-
77
-#define SA_NOMASK SA_NODEFER
78
-#define SA_ONESHOT SA_RESETHAND
79
-
8056 #define SA_RESTORER 0x04000000
8157
8258 /*