prep_write
Function parameters
Parameters
- sqe:*linux.io_uring_sqe
- fd:linux.fd_t
- buffer:[]const u8
- offset:u64
Type definitions in this namespace
Types
Source
Implementation
pub fn prep_write(sqe: *linux.io_uring_sqe, fd: linux.fd_t, buffer: []const u8, offset: u64) void {
sqe.prep_rw(.WRITE, fd, @intFromPtr(buffer.ptr), buffer.len, offset);
}