From ab1ed93ad94b6400c741831fd125825d2300ee54 Mon Sep 17 00:00:00 2001 From: Joran Dirk Greef Date: Fri, 30 Oct 2020 12:39:01 +0200 Subject: [PATCH] Add close_range, faccessat2 and process_madvise --- lib/std/os/bits/linux/mips.zig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/std/os/bits/linux/mips.zig b/lib/std/os/bits/linux/mips.zig index 3905fb4f65..b5f77c9061 100644 --- a/lib/std/os/bits/linux/mips.zig +++ b/lib/std/os/bits/linux/mips.zig @@ -425,8 +425,11 @@ pub const SYS = extern enum(usize) { fspick = Linux + 433, pidfd_open = Linux + 434, clone3 = Linux + 435, + close_range = Linux + 436, openat2 = Linux + 437, pidfd_getfd = Linux + 438, + faccessat2 = Linux + 439, + process_madvise = Linux + 440, _, };