zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 331b8e892aa831d2825f3f006e508a6db46f1f2c (tree)
parent a76910b691179390b122b9c42a5575c00d40583a
Author: Vincent Rischmann <vincent@rischmann.fr>
Date:   Sun, 12 Dec 2021 16:55:51 +0100

os/linux: add more io_uring opcode

Diffstat:
Mlib/std/os/linux.zig | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/lib/std/os/linux.zig b/lib/std/os/linux.zig @@ -3576,6 +3576,12 @@ pub const IORING_OP = enum(u8) { PROVIDE_BUFFERS, REMOVE_BUFFERS, TEE, + SHUTDOWN, + RENAMEAT, + UNLINKAT, + MKDIRAT, + SYMLINKAT, + LINKAT, _, };