Tagged Questions

8
votes
4answers
8k views

Create a temporary FIFO (named pipe) in Python?

How can you create a temporary FIFO (named pipe) in Python? This should work: import tempfile temp_file_name = mktemp() os.mkfifo(temp_file_name) open(temp_file_name, os.O_WRONLY) # ... some ...
4
votes
1answer
195 views

How do I properly write to FIFOs in python?

Something very strange is happening when I open FIFOs(named pipes) in python for writing. Consider what happens when try to I open a FIFO for writing in a interactive interpreter : >>> ...
3
votes
2answers
490 views

Python and FIFOs

I was trying to understand FIFOs using Python under linux and I found a strange behavior i don't understand. The following is fifoserver.py import sys import time def readline(f): s = ...
0
votes
1answer
116 views

how to use a persistent named pipe under linux?

Use named pipe some times very convenient, such as mkfifo file.fifo. but the file.fifo is not persistent, if the computer restarted or the writer process crashed, I can get nothing from the pipe. so, ...
0
votes
2answers
141 views

Is there a function like WaitNamedPipe or a way to realize this on C++/linux? (so the process is not blocking on the pipe for infinite time)

I have a named pipe in my C++ program. A childprocess writes a value in it and the parent process reads it. I created the pipe by mkfifo and all operations are blocking (fifo cannot be opened for ...
0
votes
2answers
370 views

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 I tried to open them, it succeeded in opening the first FIFO only, then the ...