| OLD | NEW |
| 1 #ifndef _SYS_PRCTL_H | 1 #ifndef _SYS_PRCTL_H |
| 2 #define _SYS_PRCTL_H | 2 #define _SYS_PRCTL_H |
| 3 | 3 |
| 4 #ifdef __cplusplus | 4 #ifdef __cplusplus |
| 5 extern "C" { | 5 extern "C" { |
| 6 #endif | 6 #endif |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #define PR_SET_PDEATHSIG 1 | 10 #define PR_SET_PDEATHSIG 1 |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 #define PR_GET_THP_DISABLE 42 | 117 #define PR_GET_THP_DISABLE 42 |
| 118 | 118 |
| 119 #define PR_MPX_ENABLE_MANAGEMENT 43 | 119 #define PR_MPX_ENABLE_MANAGEMENT 43 |
| 120 #define PR_MPX_DISABLE_MANAGEMENT 44 | 120 #define PR_MPX_DISABLE_MANAGEMENT 44 |
| 121 | 121 |
| 122 #define PR_SET_FP_MODE 45 | 122 #define PR_SET_FP_MODE 45 |
| 123 #define PR_GET_FP_MODE 46 | 123 #define PR_GET_FP_MODE 46 |
| 124 #define PR_FP_MODE_FR (1 << 0) | 124 #define PR_FP_MODE_FR (1 << 0) |
| 125 #define PR_FP_MODE_FRE (1 << 1) | 125 #define PR_FP_MODE_FRE (1 << 1) |
| 126 | 126 |
| 127 #define PR_CAP_AMBIENT 47 |
| 128 #define PR_CAP_AMBIENT_IS_SET 1 |
| 129 #define PR_CAP_AMBIENT_RAISE 2 |
| 130 #define PR_CAP_AMBIENT_LOWER 3 |
| 131 #define PR_CAP_AMBIENT_CLEAR_ALL 4 |
| 132 |
| 127 int prctl (int, ...); | 133 int prctl (int, ...); |
| 128 | 134 |
| 129 #ifdef __cplusplus | 135 #ifdef __cplusplus |
| 130 } | 136 } |
| 131 #endif | 137 #endif |
| 132 | 138 |
| 133 #endif | 139 #endif |
| OLD | NEW |