Skip to content

Commit 1ad914d

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 <mega.alpha100@gmail.com>
1 parent 64c2266 commit 1ad914d

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
@@ -3955,6 +3955,11 @@ pub const Shut = enum(u32) {
39553955
pub const RDWR: u32 = @intFromEnum(Shut.rdwr);
39563956
};
39573957

3958+
/// SYNC_FILE_RANGE_* flags
3959+
pub const SyncFileRange = packed struct(u32) {
3960+
_: u32 = 0, // TODO: fill out
3961+
};
3962+
39583963
/// Deprecated alias to Sock
39593964
pub const SOCK = Sock;
39603965
/// SOCK_* Socket type and flags

0 commit comments

Comments
 (0)