Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(421)

Side by Side Diff: fusl/include/sys/prctl.h

Issue 1689833004: [fusl] Update fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: remove stray space Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/include/sys/mman.h ('k') | fusl/include/sys/ptrace.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « fusl/include/sys/mman.h ('k') | fusl/include/sys/ptrace.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698