pub const SYS_PREAD: usize = 456;Expand description
Read from a file descriptor at a specific offset.
fd: file descriptorbuf_ptr: buffer to receive the databuf_len: number of bytes to readoffset: byte offset in the file
Returns the number of bytes read. The file position is not changed.