Function lrs::syscall::writev

Writes to a file descriptor from multiple buffers.

Syntax

fn writev(fd: i32, bufs: &[&[u8]]) -> i64

Arguments

NameDescription
fd

The affected file descriptor.

bufs

The buffers to write.

Return value

Returns the number of bytes written or an error value.

See also