| .. | .. |
|---|
| 62 | 62 | #define SIGRTMAX _NSIG |
|---|
| 63 | 63 | |
|---|
| 64 | 64 | /* |
|---|
| 65 | | - * SA_FLAGS values: |
|---|
| 66 | | - * |
|---|
| 67 | | - * SA_ONSTACK indicates that a registered stack_t will be used. |
|---|
| 68 | | - * SA_RESTART flag to get restarting signals (which were the default long ago) |
|---|
| 69 | | - * SA_NOCLDSTOP flag to turn off SIGCHLD when children stop. |
|---|
| 70 | | - * SA_RESETHAND clears the handler when the signal is delivered. |
|---|
| 71 | | - * SA_NOCLDWAIT flag on SIGCHLD to inhibit zombies. |
|---|
| 72 | | - * SA_NODEFER prevents the current signal from being masked in the handler. |
|---|
| 73 | | - * |
|---|
| 74 | | - * SA_ONESHOT and SA_NOMASK are the historical Linux names for the Single |
|---|
| 75 | | - * Unix names RESETHAND and NODEFER respectively. |
|---|
| 76 | | - * |
|---|
| 77 | 65 | * SA_RESTORER used to be defined as 0x04000000 but only the O32 ABI ever |
|---|
| 78 | 66 | * supported its use and no libc was using it, so the entire sa-restorer |
|---|
| 79 | 67 | * functionality was removed with lmo commit 39bffc12c3580ab for 2.5.48 |
|---|