| author | |
| committer | |
| log | 253eb72c1489604549ff35e1f9f32844f1bc31b5 |
| tree | 8d865355346117a877c465aa9eb03ad334f9c1e5 |
| parent | 316812786c376b33bd27c8c33bce04f6e2c223df |
1 files changed, 4 insertions(+), 1 deletions(-)
lib/std/os/linux.zig+4-1| ... | ... | @@ -3464,7 +3464,10 @@ pub const CAP = struct { |
| 3464 | 3464 | pub const WAKE_ALARM = 35; |
| 3465 | 3465 | pub const BLOCK_SUSPEND = 36; |
| 3466 | 3466 | pub const AUDIT_READ = 37; |
| 3467 | pub const LAST_CAP = AUDIT_READ; | |
| 3467 | pub const PERFMON = 38; | |
| 3468 | pub const BPF = 39; | |
| 3469 | pub const CHECKPOINT_RESTORE = 40; | |
| 3470 | pub const LAST_CAP = CHECKPOINT_RESTORE; | |
| 3468 | 3471 | |
| 3469 | 3472 | pub fn valid(x: u8) bool { |
| 3470 | 3473 | return x >= 0 and x <= LAST_CAP; |