commit 843c104fc9cb544367fda2168c6ad45a625cb979 (tree)
parent a853f004101f22e94e2a18660bfb017a489e7b10
Author: Joran Dirk Greef <joran@ronomon.com>
Date: Mon, 21 Sep 2020 10:39:58 +0200
Add io_uring syscalls to os.bits.linux.mips.SYS
As per lib/libc/musl/arch/mips/bits/syscall.h.in:
```c
```
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/lib/std/os/bits/linux/mips.zig b/lib/std/os/bits/linux/mips.zig
@@ -383,6 +383,9 @@ pub const SYS = extern enum(usize) {
statx = Linux + 366,
rseq = Linux + 367,
io_pgetevents = Linux + 368,
+ io_uring_setup = Linux + 425,
+ io_uring_enter = Linux + 426,
+ io_uring_register = Linux + 427,
openat2 = Linux + 437,
pidfd_getfd = Linux + 438,