Expand description
Unix pipe types.
Structs§
- Options and flags which can be used to configure how a FIFO file is opened.
- Reading end of a Unix pipe.
- Writing end of a Unix pipe.
Enums§
- PipeEnd 🔒
Functions§
- Gets file descriptor’s flags by fcntl.
- Checks for
O_RDONLY
orO_RDWR
access mode. - Checks for
O_WRONLY
orO_RDWR
access mode. - is_pipe 🔒Checks if the file descriptor is a pipe or a FIFO.
- Creates a new anonymous Unix pipe.
- Removes
O_NONBLOCK
from fd’s flags. - Sets file descriptor’s flags with
O_NONBLOCK
by fcntl.