[][src]Function linux::syscall::pwritev

pub fn pwritev(fd: c_int, bufs: &[&[d8]], offset: loff_t) -> ssize_t

Writes to an offset in a file descriptor from multiple buffers.

[argument, fd] The affected file descriptor.

[argument, bufs] The buffers to write.

[argument, offset] The offset at which to write.

[return_value] Returns the number of bytes written or an error value.

= See also

  • link:man:pwritev(2)