The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
36 views

Wait until 2 pid write to FIFO(named pipe)

Im trying to make a Tic Tac Toe game with server-client using FIFO(named pipe) and shared memory. The first step is to write the pid of the client process to the FIFO. And in the server process i ...
-1
votes
1answer
68 views

Unable to open FIFO for writing

'Server' program side: #define RESP_FIFO_NAME "response" /* Global Variables */ char *cmdfifo = CMD_FIFO_NAME; /* Name of command FIFO. */ char *respfifo = RESP_FIFO_NAME; /* Name of response FIFO. ...
2
votes
2answers
159 views

How to send a file through a named pipe in C?

I have two programs, server and client. Server should read a file and then send its content through a named pipe to client. But my server reads only two chars from file, and then exits. What is wrong ...
0
votes
0answers
21 views

FIFO loses permissions after reboot

I am creating a FIFO special-file via mkfifo(fifo_path, S_IRWXU | S_IRWXO); chmod(fifo_path, strtol("0777", 0, 8)); The file is created with permission "prwxrwxrwx" and everything seems to be ok. ...
1
vote
1answer
45 views

gunzip with mkfifo in bash

I am trying to gunzip a file and then keep the results in a named pipe created using mkfifo which will ultimately be used in a join command. I have seen many examples on using mkfifo to gzip things ...
1
vote
1answer
136 views

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 blocking defaults on reads/writes. As I am already using poll() to check other flags ...
1
vote
1answer
144 views

How to close a named pipe that was opened with myfifo?

I am using a named pipe to capture the output of an external program (wgrib2) within another program (Matlab). The Matlab code is below, and "system" accesses the command line to make the pipe. Here ...
0
votes
0answers
108 views

Reopening existing FIFO gives error “No such file or directory”

I am trying to realize a very simple communication between a PHP website and a C++ program. The solution chosen was to make use of Linux fifo's. This works well for the first command, but when we try ...
0
votes
1answer
359 views

Multiple reader/writer on FIFO (named pipe)

I've created a named pipe using mkfifo and opened a reader and writer on it. I then went on to open a second reader/writer on the same fifo but open returns ENXIO instead. std::string n = ...
1
vote
1answer
84 views

Ocaml: FIFO's reads incorrectly

Ok, so I am working with FIFO's and I was trying to build a small library to use in future programs. It should be able to create a named pipe, read it and write in it. I was able to do all these ...
2
votes
3answers
382 views

Implementing pipelining in c. What would be the best way to do that? (Own linux shell)

I can't think of any way to implement pipelining in c that would actually work. That's why I've decided to write in here. I have to say, that I understand how do pipe/fork/mkfifo work. I've seen ...
0
votes
1answer
438 views

Linux pipelines using c programming. Redirecting inputs/outputs through pipelines. Own shell

I'm very beginner with linux however I've managed to do my own shell. It's time to add pipelines in there. (That's what, the homework says). Could anyone explain me a little bit more how to do that? I ...
0
votes
1answer
94 views

Opening pipe in append mode

I'm trying to open a fifo pipe, into which one thread writes, the synchronization is all good. However, for understandable reasons I need it to be opened in append mode. When I open it as follow: ...
0
votes
0answers
185 views

echo server using mkfifo in c

I have create the server and the client and it works great if I just want to send something from one client. How can I keep server "alive" so it wont terminate and it will wait for another process to ...
1
vote
2answers
242 views

FIFOs in C (Named-pipes)

I'm getting permission errors when trying to mkfifo() in the current directory. I definitely have permission to create files here. Any idea what the problem could be? char dir[FILENAME_MAX]; ...
0
votes
2answers
457 views

mkfifo() error ---> “Error creating the named pipe.: File exists”

The mkfifo function takes 2 arguments, path and mode. But I don't know what is the format of the path that it uses. I am writing a small program to create a named pipe and as path in the mkfifo. ...
0
votes
2answers
191 views

mkfifo causes terminal to hang?

Does mkfifo simply not work with Cygwin? A simple set of commands such as $ mkfifo my_pipe $ echo "1234" > my_pipe just causes the terminal to sit forever with the cursor blinking. Am I "doing ...
1
vote
0answers
284 views

PhantomJS: pipe input

I am trying to use PhantomJS to render an html page to pdf. I do not want to write the files to disk, I have the html in memory, and I want the pdf in memory. Using the excellent answer from Pooria ...
0
votes
0answers
84 views

Server Client Communication

I've server and client part.Server writes to client but server reads what it has writen even it doesn't read! And client never reads server message. Server code: while (requestfd = open( MsgFifo, ...
6
votes
1answer
939 views

What conditions result in an opened, nonblocking named pipe (fifo) being “unavailable” for reads?

Situation: new_pipe = os.open(pipe_path, os.O_RDONLY | os.O_NONBLOCK) # pipe_path points to a FIFO data = os.read(new_pipe, 1024) The read occasionally raises errno -11: Resource temporarily ...
2
votes
2answers
1k views

How can I have output from one named pipe fed back into another named pipe?

I'm adding some custom logging functionality to a bash script, and can't figure out why it won't take the output from one named pipe and feed it back into another named pipe. Here is a basic version ...
3
votes
2answers
3k views

Proper FIFO client-server connection

I am trying to write simple client and server C programs, communicating with each other in separate terminals. The server has to create a public fifo and wait for the client. Meanwhile the client is ...
2
votes
1answer
223 views

Bash Script Statement

I'm trying to figure out what a line means in a bash script file: mkfifo mypipe nc -l 12345 < mypipe | /home/myprogram > mypipe Here's what I understand: nc -l part creates a server-side like ...
1
vote
2answers
658 views

Why does my program hang when opening a mkfifo-ed pipe?

I use mkfifo to create a named pipe. Then I use the following program to open it. However, the program hangs at the line "fopen". Is there something wrong here? int main(int argc, char** argv) { ...
0
votes
1answer
422 views

FIFO server program

The above program i have typed in linux. It basically has to connect a client and server in separate terminals. But when i run them in the correct order, i.e Compile server -> run server Compile ...
1
vote
1answer
718 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, ...
4
votes
1answer
1k 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 : >>> ...
0
votes
2answers
355 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
3answers
283 views

Syntax to Redirect to Input/Output to in C (UNIX)

I am trying to find the syntax that will let me redirect standard input output toward a named pipe after using the mkfifo() function and creating a child process using fork. Which man page should I ...
3
votes
2answers
1k views

How do I use exec 3>myfifo in a script, and not have echo foo>&3 close the pipe?

Why can't I use exec 3>myfifo in the same manner in a bash script as I can in my terminal? I'm using named pipes to turn an awk filter into a simple "server", that should be able to take text input ...
3
votes
2answers
2k 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 = ...
2
votes
1answer
1k views

Insert data into mysql table data from a FIFO pipe in linux continuously

I want to insert data from a fifo pipe into a mysql table, right now for me, this is possible until the fifo pipe process is killed, the command : $>mkfifo /path/to/pipe $>sudo chmod 666 ...
0
votes
2answers
2k 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 ...
2
votes
3answers
2k views

python os.mkfifo() for Windows

Short version (if you can answer the short version it does the job for me, the rest is mainly for the benefit of other people with a similar task): In python in Windows, I want to create 2 file ...
3
votes
2answers
1k views

Example for using Python Twisted with File Descriptors

I'm looking to use twisted to control communication across Linux pipes (os.pipe()) and fifos (os.mkfifo()) between a master process and a set of slave processes. While I'm positive tat it's possible ...
11
votes
4answers
14k 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
2answers
2k views

Named pipe similar to “mkfifo” creation, but bidirectional

I'd like to create a named pipe, like the one created by "mkfifo", but one caveat. I want the pipe to be bidirectional. That is, I want process A to write to the fifo, and process B to read from it, ...
3
votes
5answers
212 views

feeding data to C API expecting a filename

I'm writing a straightforward C program on Linux and wish to use an existing library's API which expects data from a file. I must feed it a file name as a const char*. But i have data, just like ...