prep_writev
Function parameters
Parameters
- sqe:*linux.io_uring_sqe
- fd:linux.fd_t
- iovecs:[]const std.posix.iovec_const
- offset:u64
Type definitions in this namespace
Types
Source
Implementation
pub fn prep_writev(
sqe: *linux.io_uring_sqe,
fd: linux.fd_t,
iovecs: []const std.posix.iovec_const,
offset: u64,
) void {
sqe.prep_rw(.WRITEV, fd, @intFromPtr(iovecs.ptr), iovecs.len, offset);
}