Skip to content

Commit d3cee98

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 7174dc7 commit d3cee98

2 files changed

Lines changed: 260 additions & 66 deletions

File tree

lib/std/os/linux.zig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4032,6 +4032,12 @@ pub const Shut = enum(u32) {
40324032
pub const RDWR: u32 = @intFromEnum(Shut.rdwr);
40334033
};
40344034

4035+
/// SYNC_FILE_RANGE_* flags
4036+
pub const SyncFileRange = packed struct(u32) {
4037+
_: u32 = 0, // TODO: fill out
4038+
};
4039+
4040+
/// Deprecated alias to Sock
40354041
pub const SOCK = Sock;
40364042
/// SOCK_* Socket type and flags
40374043
pub const Sock = packed struct(u32) {

0 commit comments

Comments
 (0)