[][src]Function linux::syscall::readv

pub fn readv(fd: c_int, bufs: &mut [&mut [d8]]) -> ssize_t

Reads from a file descriptor into multiple buffers.

[argument, fd] The affected file descriptor.

[argument, bufs] The buffers to read into.

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

= See also

  • link:man:readv(2)