authorgravatar for joran@ronomon.comJoran Dirk Greef <joran@ronomon.com> 2020-09-21 10:39:58+02:00
committergravatar for joran@ronomon.comJoran Dirk Greef <joran@ronomon.com> 2020-09-21 10:39:58+02:00
log843c104fc9cb544367fda2168c6ad45a625cb979
tree24cfff4773cfce78e60d98736d3d3d7374aead84
parenta853f004101f22e94e2a18660bfb017a489e7b10

Add io_uring syscalls to os.bits.linux.mips.SYS

As per lib/libc/musl/arch/mips/bits/syscall.h.in: ```c ```

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

lib/std/os/bits/linux/mips.zig+3
......@@ -383,6 +383,9 @@ pub const SYS = extern enum(usize) {
383383 statx = Linux + 366,
384384 rseq = Linux + 367,
385385 io_pgetevents = Linux + 368,
386 io_uring_setup = Linux + 425,
387 io_uring_enter = Linux + 426,
388 io_uring_register = Linux + 427,
386389 openat2 = Linux + 437,
387390 pidfd_getfd = Linux + 438,
388391