A FIFO special file is similar to a pipe, except that it is created in a
different way. Instead of being an anonymous communications channel, a
FIFO special file is entered into the file system by calling
mkfifo
.
Once you have created a FIFO special file in this way, any process can open it for reading or writing, in the same way as an ordinary file. However, it has to be open at both ends simultaneously before you can proceed to do any input or output operations on it. Opening a FIFO for reading normally blocks until some other process opens the same FIFO for writing, and vice versa.
The mkfifo
function is declared in the header file
`sys/stat.h'.
mkfifo
function makes a FIFO special file with name
filename. The mode argument is used to set the file's
permissions; see section Assigning File Permissions.
The normal, successful return value from mkfifo
is 0
. In
the case of an error, -1
is returned. In addition to the usual
file name errors (see section File Name Errors), the following
errno
error conditions are defined for this function:
EEXIST
ENOSPC
EROFS
Go to the first, previous, next, last section, table of contents.