Skip to content

Commit 0caafe3

Browse files
committed
add IoUring send_bundle, send_to, recv_multishot, sync_file_range
ignore prep_openat2* for now add non-at variant of some unlink, rename, mkdir, symlink, link TODO: add Sync File Flags Signed-off-by: Bernard Assan <[email protected]>
1 parent fe648af commit 0caafe3

File tree

2 files changed

+259
-66
lines changed

2 files changed

+259
-66
lines changed

lib/std/os/linux.zig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4023,6 +4023,11 @@ pub const Shut = enum(u32) {
40234023
pub const RDWR: u32 = @intFromEnum(Shut.rdwr);
40244024
};
40254025

4026+
/// SYNC_FILE_RANGE_* flags
4027+
pub const SyncFileRange = packed struct(u32) {
4028+
_: u32 = 0, // TODO: fill out
4029+
};
4030+
40264031
/// Deprecated alias to Sock
40274032
pub const SOCK = Sock;
40284033
/// SOCK_* Socket type and flags

0 commit comments

Comments
 (0)