Rechercher une page de manuel
fifo
Langue: en
Version: 1999-06-20 (ubuntu - 01/11/07)
Section: 4 (Pilotes et protocoles réseau)
Sommaire
NAME
fifo - first-in first-out special file, named pipeDESCRIPTION
A FIFO special file (a named pipe) is similar to a pipe, except that it is accessed as part of the file system. It can be opened by multiple processes for reading or writing. When processes are exchanging data via the FIFO, the kernel passes all data internally without writing it to the file system. Thus, the FIFO special file has no contents on the file system, the file system entry merely serves as a reference point so that processes can access the pipe using a name in the file system.The kernel maintains exactly one pipe object for each FIFO special file that is opened by at least one process. The FIFO must be opened on both ends (reading and writing) before data can be passed. Normally, opening the FIFO blocks until the other end is opened also.
A process can open a FIFO in non-blocking mode. In this case, opening for read only will succeed even if no-one has opened on the write side yet; opening for write only will fail with ENXIO (no such device or address) unless the other end has already been opened.
Under Linux, opening a FIFO for read and write will succeed both in blocking and non-blocking mode. POSIX leaves this behavior undefined. This can be used to open a FIFO for writing while there are no readers available. A process that uses both ends of the connection in order to communicate with itself should be very careful to avoid deadlocks.
NOTES
When a process tries to write to a FIFO that is not opened for read on the other side, the process is sent a SIGPIPE signal.FIFO special files can be created by mkfifo(3), and are specially indicated in ls -l.
SEE ALSO
mkfifo(1), open(2), pipe(2), sigaction(2), signal(2), socketpair(2), mkfifo(3), pipe(7)Je suis le lumineux, le neuf, l'auréolé.
ESTELLE :
Mon prince d'Aquitaine à la cour anoblie.
PHILIPPE :
Tu es ma seule étoile et mon luth constellé.
ESTELLE :
Le Soleil de l'espoir m'exalte à la folie.
PHILIPPE :
Dans la nuit des flambeaux, nous avons décollé.
ESTELLE :
Prends-moi mon beau Philippe, allons en Italie !
PHILIPPE :
Ta fleur me plaisait tant que mon coeur s'est soûlé.
ESTELLE :
C'est merveilleux, ton pampre à ma rose s'allie.
PHILIPPE :
Nuit d'amour ou rébus ? Oulipo ou clairon ?
ESTELLE :
Mon front est rouge encor de ton baiser de renne.
PHILIPPE :
J'ai rêvé dans la grotte où tu nages, sirène !
ESTELLE :
Soyons deux fois vainqueurs en soudant nos fleurons !
PHILIPPE :
Modulons tour à tour sur la lyre d'Orphée...
ESTELLE :
Les soupirs du BooK saint et les cris de la fée.
-- Kaeser, Pascal
Contenus ©2006-2009 Benjamin Poulain
Design ©2006-2009 Maxime Vantorre