| OLD | NEW |
| 1 #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \ | 1 #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \ |
| 2 || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE) | 2 || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE) |
| 3 | 3 |
| 4 #if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE) | 4 #if defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE) |
| 5 #define MINSIGSTKSZ 2048 | 5 #define MINSIGSTKSZ 2048 |
| 6 #define SIGSTKSZ 8192 | 6 #define SIGSTKSZ 8192 |
| 7 #endif | 7 #endif |
| 8 | 8 |
| 9 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) | 9 #if defined(_GNU_SOURCE) || defined(_BSD_SOURCE) |
| 10 typedef unsigned long long greg_t, gregset_t[32]; | 10 typedef unsigned long long greg_t, gregset_t[32]; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 #define SA_RESETHAND 0x80000000 | 66 #define SA_RESETHAND 0x80000000 |
| 67 #define SA_RESTORER 0x04000000 | 67 #define SA_RESTORER 0x04000000 |
| 68 | 68 |
| 69 #undef SIG_BLOCK | 69 #undef SIG_BLOCK |
| 70 #undef SIG_UNBLOCK | 70 #undef SIG_UNBLOCK |
| 71 #undef SIG_SETMASK | 71 #undef SIG_SETMASK |
| 72 #define SIG_BLOCK 1 | 72 #define SIG_BLOCK 1 |
| 73 #define SIG_UNBLOCK 2 | 73 #define SIG_UNBLOCK 2 |
| 74 #define SIG_SETMASK 3 | 74 #define SIG_SETMASK 3 |
| 75 | 75 |
| 76 #undef SI_ASYNCIO |
| 77 #undef SI_MESGQ |
| 78 #undef SI_TIMER |
| 79 #define SI_ASYNCIO (-2) |
| 80 #define SI_MESGQ (-4) |
| 81 #define SI_TIMER (-3) |
| 82 |
| 83 #define __SI_SWAP_ERRNO_CODE |
| 84 |
| 76 #endif | 85 #endif |
| 77 | 86 |
| 78 #define SIGHUP 1 | 87 #define SIGHUP 1 |
| 79 #define SIGINT 2 | 88 #define SIGINT 2 |
| 80 #define SIGQUIT 3 | 89 #define SIGQUIT 3 |
| 81 #define SIGILL 4 | 90 #define SIGILL 4 |
| 82 #define SIGTRAP 5 | 91 #define SIGTRAP 5 |
| 83 #define SIGABRT 6 | 92 #define SIGABRT 6 |
| 84 #define SIGIOT SIGABRT | 93 #define SIGIOT SIGABRT |
| 85 #define SIGSTKFLT 7 | 94 #define SIGSTKFLT 7 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 104 #define SIGCONT 25 | 113 #define SIGCONT 25 |
| 105 #define SIGTTIN 26 | 114 #define SIGTTIN 26 |
| 106 #define SIGTTOU 27 | 115 #define SIGTTOU 27 |
| 107 #define SIGVTALRM 28 | 116 #define SIGVTALRM 28 |
| 108 #define SIGPROF 29 | 117 #define SIGPROF 29 |
| 109 #define SIGXCPU 30 | 118 #define SIGXCPU 30 |
| 110 #define SIGXFSZ 31 | 119 #define SIGXFSZ 31 |
| 111 #define SIGUNUSED SIGSYS | 120 #define SIGUNUSED SIGSYS |
| 112 | 121 |
| 113 #define _NSIG 128 | 122 #define _NSIG 128 |
| OLD | NEW |