Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

register_buffers

Registers an array of buffers for use with read_fixed and write_fixed.

IoUring.register_buffers
pub fn register_buffers(self: *IoUring, buffers: []const posix.iovec) !void

File

lib/std/os/linux/IoUring.zig:1293

Code

pub fn register_buffers(self: *IoUring, buffers: []const posix.iovec) !void {
    assert(self.fd >= 0);
    const res = linux.io_uring_register(
        self.fd,
        .REGISTER_BUFFERS,
        buffers.ptr,
        @as(u32, @intCast(buffers.len)),
    );
    try handle_registration_result(res);
}