We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
fifo_make - create a named pipe
#include <fifo.h>
int fifo_make(fn,mode);
char *fn; int mode;
fifo_make creates a new named pipe with name fn and mode mode (modified by the process umask).
fifo_make returns 0 on success, -1 on error.
mkfifo(2)