PIPE(3)PIPE(3)
NAME
pipe – two-way interprocess communication
SYNOPSIS
DESCRIPTION
An
Data written to one channel becomes available for reading at the other. Write boundaries are preserved: each read terminates when the read buffer is full or after reading the last byte of a write, whichever comes first.
Writes are atomic up to a certain size, typically 32768 bytes, that is, each write will be delivered in a single read by the recipient, provided the receiving buffer is large enough.
If there are multiple writers, each
The