Parents: Linux, syscalls See also: UNIX Manual page

List

  • ssize_t write(int fd, const void buf[.count], size_t count); — write to a file descriptor.
  • read() — a blocking syscall. If the file descriptor cannot be read from, it’ll exit the program. Otherwise, it won’t properly exit.