Top "Mkfifo" questions

Creates a named-pipe (aka FIFO)

O_RDWR on named pipes with poll()

I have gone through a variaty of different linux named pipe client/server implementations but most of them use the …

linux ipc pipe mkfifo
C++ Linux named pipe hanging on open() with O_WRONLY

This is my simple code that opens a named pipe, writes a string to it, and then closes the pipe. …

c++ linux ipc named-pipes mkfifo
Having a trouble with opening FIFO in C

I'm having a trouble in opening FIFOs in C.. first I created them using mkfifo() function with permission : 0777, and when …

c file-io fifo mkfifo
using mkfifo in a shell script

I was trying to do something simple with a FIFO: read the lines, but not all at once, and it …

bash shell mkfifo
using FIFOs for input and output in python

To communicate with a shell, which is started once and runs in a separate process, I used Popen from subprocess. …

python fifo mkfifo