aboutsummaryrefslogtreecommitdiff
path: root/lib/std/os/linux.zig
diff options
context:
space:
mode:
authorKai Jellinghaus <contact@kaij.tech>2023-10-04 11:18:14 +0200
committerGitHub <noreply@github.com>2023-10-04 09:18:14 +0000
commit11489bb04f82cf91e23bd1980fb4cf49b5a6fc54 (patch)
tree200fd338f6136eaaa93c8284e0f7d2183c42f597 /lib/std/os/linux.zig
parent4df7f7c86a0a105b5d3764121f259a39487a6c8a (diff)
downloadzig-11489bb04f82cf91e23bd1980fb4cf49b5a6fc54.tar.gz
zig-11489bb04f82cf91e23bd1980fb4cf49b5a6fc54.zip
Update IORING_OP to reflect upstream (#17388)
Reference [upstream io_uring.h](https://github.com/torvalds/linux/blob/cbf3a2cb156a2c911d8f38d8247814b4c07f49a2/include/uapi/linux/io_uring.h#L234)
Diffstat (limited to 'lib/std/os/linux.zig')
-rw-r--r--lib/std/os/linux.zig9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/std/os/linux.zig b/lib/std/os/linux.zig
index dea3cea875..8ab8c71b6a 100644
--- a/lib/std/os/linux.zig
+++ b/lib/std/os/linux.zig
@@ -3882,6 +3882,15 @@ pub const IORING_OP = enum(u8) {
MKDIRAT,
SYMLINKAT,
LINKAT,
+ MSG_RING,
+ FSETXATTR,
+ SETXATTR,
+ FGETXATTR,
+ GETXATTR,
+ SOCKET,
+ URING_CMD,
+ SEND_ZC,
+ SENDMSG_ZC,
_,
};