.. | .. |
---|
60 | 60 | #define SIGRTMIN 32 |
---|
61 | 61 | #define SIGRTMAX _NSIG |
---|
62 | 62 | |
---|
63 | | -/* |
---|
64 | | - * SA_FLAGS values: |
---|
65 | | - * |
---|
66 | | - * SA_ONSTACK is not currently supported, but will allow sigaltstack(2). |
---|
67 | | - * SA_RESTART flag to get restarting signals (which were the default long ago) |
---|
68 | | - * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop. |
---|
69 | | - * SA_RESETHAND clears the handler when the signal is delivered. |
---|
70 | | - * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies. |
---|
71 | | - * SA_NODEFER prevents the current signal from being masked in the handler. |
---|
72 | | - * |
---|
73 | | - * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single |
---|
74 | | - * Unix names RESETHAND and NODEFER respectively. |
---|
75 | | - */ |
---|
76 | | -#define SA_NOCLDSTOP 0x00000001U |
---|
77 | | -#define SA_NOCLDWAIT 0x00000002U |
---|
78 | | -#define SA_SIGINFO 0x00000004U |
---|
79 | | -#define SA_ONSTACK 0x08000000U |
---|
80 | | -#define SA_RESTART 0x10000000U |
---|
81 | | -#define SA_NODEFER 0x40000000U |
---|
82 | | -#define SA_RESETHAND 0x80000000U |
---|
83 | | - |
---|
84 | | -#define SA_NOMASK SA_NODEFER |
---|
85 | | -#define SA_ONESHOT SA_RESETHAND |
---|
86 | | - |
---|
87 | 63 | #define SA_RESTORER 0x04000000U |
---|
88 | 64 | |
---|
89 | 65 | #define MINSIGSTKSZ 2048 |
---|