authorgravatar for joran@ronomon.comJoran Dirk Greef <joran@ronomon.com> 2020-10-30 12:39:01+02:00
committergravatar for joran@ronomon.comJoran Dirk Greef <joran@ronomon.com> 2020-10-30 12:39:01+02:00
logab1ed93ad94b6400c741831fd125825d2300ee54
tree4fa501040caf89f973eae1608dbb7b19cd28e4e7
parent9423ed167115055fc84d75179344f4950085b006

Add close_range, faccessat2 and process_madvise


1 files changed, 3 insertions(+), 0 deletions(-)

lib/std/os/bits/linux/mips.zig+3
...@@ -425,8 +425,11 @@ pub const SYS = extern enum(usize) {...@@ -425,8 +425,11 @@ pub const SYS = extern enum(usize) {
425 fspick = Linux + 433,425 fspick = Linux + 433,
426 pidfd_open = Linux + 434,426 pidfd_open = Linux + 434,
427 clone3 = Linux + 435,427 clone3 = Linux + 435,
428 close_range = Linux + 436,
428 openat2 = Linux + 437,429 openat2 = Linux + 437,
429 pidfd_getfd = Linux + 438,430 pidfd_getfd = Linux + 438,
431 faccessat2 = Linux + 439,
432 process_madvise = Linux + 440,
430433
431 _,434 _,
432};435};