0
votes
3answers
21 views

wait() for the process child crash

I have the following program int external_apply(char *type) { int pfds[2]; if (pipe(pfds) < 0) return -1; if ((pid = fork()) == -1) goto error; if (pid == 0) { ...
0
votes
2answers
81 views

Ruby 1.8.7: Forks & Pipes - Troubleshooting

I'm aware that there are great gems like Parallel, but I came up with the class below as an exercise. It's working fine, but when doing a lot of iterations it happens sometimes that Ruby will get ...
0
votes
0answers
35 views

/bin/sh interactivly spawned process not receiving piped input

I am trying to write a /bin/sh emulator in my windowed system, so far I have collected this code to spawn a shell process with inputs and outputs piped: #define STDIN STDIN_FILENO #define STDOUT ...
4
votes
1answer
81 views

pipe() and fork() in c

I need to create two child processes. One child needs to run the command "ls -al" and redirect its output to the input of the next child process, which in turn will run the command "sort -r -n -k 5" ...
0
votes
1answer
23 views

Empty pipe using GIOChannel

I'm new to GTK and I'm working on a GUI for a program that connects to a server. I used a fork to separate the logic (command line client) from the GUI. Logic and GUI use pipes to communicate. ...
0
votes
1answer
89 views

C pipe, fork, dup, and exec()

I'm trying to pass list of strings through pipe to child process where it should display through /bin/cat using execl(). I had it working earlier except that the pipe did not close so the program ...
0
votes
1answer
65 views

How to loop through stdin & pipe output to a child execl command in C?

I have been trying to figure out how to loop through stdin from a file, then send it to a child process who sorts int using execl(). The code below works in that it takes the file & sorts the ...
0
votes
1answer
95 views

C system calls pipe, fork, and execl

I fork()'d a child process and created pipes between them and am able to send argument argv[1] to the child. I want the child to take that filename provided from argv[1] and perform an ...
1
vote
1answer
108 views

C - WHILE Loop with fork() / pipe() inside

I have a problem where I must implement a key logger into a shell we have made in class. I am having trouble getting the flow of the program within a while loop to continue looping after a child ...
1
vote
1answer
62 views

Pipes as stdin/stdout in process communication.

I'm learning pipes and I have occured problem. I want my program to work as: grep [word to find] [file to search] | grep -i [without word] | wc -l It compiles and works with no errors, but it gives ...
0
votes
1answer
23 views

Define same pipe to 2 diferent programs

im trying to pass values from one program to another using pipe. The first program create a pipe and then a son process with fork and in the part of the son process she execute with execlp another ...
0
votes
2answers
56 views

Implement a pipe in C

I try to implement a pipe in C but I have a little problem: Here is my function : void commandeTube(char * c1, char * c2) { int c1toc2[2]; int c2toPere[2]; pid_t pidc1, pidc2; ...
0
votes
1answer
30 views

In linux, calling system() from a forked process with pipe()

I have a standard program using fork() and pipe() with the intention of making a system() call for a third party program in the child process and redirecting the output to the parent process. I ...
0
votes
0answers
46 views

Fork() Parent and Child process order of operations

I am trying to learn how to create and use pipes as per here http://www.gnu.org/software/libc/manual/html_node/Creating-a-Pipe.html#Creating-a-Pipe and I am running into a thing I don't understand. ...
1
vote
2answers
98 views

Writing chars to pipe in C

I have the following program which is basically reading chars from keyboard (getch() does this without the need to click 'ENTER', function is taken from here:C/C++: Capture characters from standard ...
0
votes
0answers
74 views

Multiple C UNIX pipes - close() call crashes program?

I'm currently writing a UNIX shell, and to program the command 1 -args | command 2 - args | command 3 -args functionality (i.e. output of the first command is used as the input of the second and so ...
0
votes
1answer
49 views

Select() still blocks read from pipe

My application forks a child, the child execls a new program, the parent writes to it, and then reads back from the child after the child performs some work. When monitoring the read end of the pipe, ...
-3
votes
1answer
42 views

Inter-Process Communication [closed]

Im trying to implement a program which takes N processes . My code doesn't compile properly,i tried to pass an input :./a.out "ls -ll" . put it didn't execute while ,when i tried with ./a.out ls it ...
0
votes
0answers
52 views

Inter-Processes Communication

I'm trying to run this program where the input is a set of command and argument for example :"ps ufax | grep diom | sort " and probably each process have to pass his input to the next one in order to ...
1
vote
2answers
74 views

Is dup2() necessary for execl

Is it necessary to replace stdin with a pipe end when using pipes? I have an application that:- Creates a pipe, Forks a child process, and then execl() a new process image within new child ...
0
votes
3answers
103 views

From Perl, spawn a shell, configure it, and fork the STDOUT

I use a Perl script to configure and spawn a compiled program, that needs a subshell configured a certain way, so I use $returncode = system("ulimit -s unlimited; sg ourgroup 'MyExecutable.exe'"); I ...
0
votes
1answer
83 views

C parallel server with fork() and pipe()

I'm trying to create parallel server. It should be able work with more than one client (via telnet) at the same time. I've used fork() to create child processes and pipe() to share variable between ...
0
votes
1answer
49 views

N command pipe “ Inter-process ”

I have successfully piped the output of one command by using one pipe . I want to do this with N successive commands where each command represent a process . This is my attempt at pipelining one ...
0
votes
0answers
81 views

ffmpeg in child process doesn't exit when parent closes pipe

This code snippet is from a pthread process. It is responsible for reading configuration/options to pass to ffmpeg. The data piped to ffmpeg is coming in on a ring buffer of video frames (as a proof ...
4
votes
1answer
136 views

what is the proper way to pipe when making a shell in C

I’m attempting to create my own shell I believe i have the forking done correctly but i cannot figure out how to pipe correctly. Any help or tips would be appreciated. basically my pipes aren’t ...
2
votes
1answer
131 views

How do i correctly utilize pipe, fork and execv to launch and interact with a secondary program?

Programming Language: C and C++ mixed code Context: There is program 'A' that takes user input from STDIN and outputs a response to STDOUT. The input and output of 'A' are unsuitable for my intended ...
0
votes
1answer
43 views

Can't read data from redirected io

I've written a relatively simply piece of code that polls a pipe that was redirected as stdout in a child process. But when the poll function returns and says data is ready, the read function always ...
0
votes
1answer
317 views

Why do I get a close: Bad file descriptor error for this fork pipe c program?

int main(int argc, char ** argv) { int count = 2; int pid, status; int fd[count][2]; int i; for (i = 0; i < count; i++) { if (pipe(fd[i]) != 0) { ...
1
vote
1answer
69 views

Write from one parent to multiple children?

I am learning Pipes and Forks. In this instance I am trying to write the same word from the parent to its children. Here is some practise code I wrote (four children): #define MAXWORD 5 int main() { ...
0
votes
1answer
111 views

SIGPIPE in a simple two process program

I have a simple setup for a fork and pipe that I have used before. But this time around I'm getting a SIGPIPE in my write call. Here's the code int fd[2]; int pid; if (pipe(fd) == -1) { ...
0
votes
0answers
23 views

C++ sort is having no effect on my data

I'm forking off a child process that needs to sort several char arrays in reverse numerical order. I'm able to pipe the data there and back with no problem but for some reason "sort" isn't doing ...
-1
votes
1answer
169 views

Learning fork, wait and pipes in C [closed]

I am having a hard time finding resources to learn about fork and pipes. If anyone can suggest some, that be amazing. I tried (at least attempted) writing a program where a parent creates 5 children ...
0
votes
1answer
74 views

dup2( ) causing child process to terminate early

So I'm writing a program that involves the creation of 2 sets of pipes so that a parent process can write to a child process & the child process can right back... I have the following code for my ...
1
vote
2answers
178 views

C Programming pipe only half working

I'm working on a mini shell for a college assignment. We have to read in the command, find the binary to execute from the path var, and execute command, both with and without pipes. I have everything ...
0
votes
1answer
89 views

Multiple processes and Pipes

I am making a connect four game and I would like to have Multiple processes and pipes, but I'm not sure where to start. I know you have to use fork and pipe, but when I fork just before the start of ...
0
votes
2answers
121 views

C - execvp() interprocess communication

Hi all I am new to C so sorry if I am very lost. I am having trouble with this multi-threaded web server I am trying to create. I am attempting to... have a thread create a new thread have that new ...
0
votes
0answers
80 views

Two way usage of pipe

I have 2 processes. One of them is CPU other is MEM. CPU sends read and write requests to MEM and MEM processes that request. I have to use fork and pipe. I created 2 pipes, one for reading and one ...
1
vote
2answers
263 views

C Unix - fork(), execl() and pipe in a loop

I want to preface this with the fact that I have no formal education in the use of pipes, so this is my first venture. Not to mention that I couldn't find any similar questions to my situation. ...
1
vote
2answers
502 views

Read / Write through a pipe in C

I started today working with pipe() and fork() and exec() in C, and I now have a problem: The main program, creates two pipes and forks. The child process does an exec() to another program that now ...
3
votes
3answers
133 views

Interactive pipe in C++

I need to execute an external program and access its stdin and stdout alternatively, just like console terminal itself. I have used popen(), but it does not provide a bidirectional pipe. Using pipe() ...
0
votes
1answer
65 views

How to execute arbitrary pipes in c and continue

I'm trying to fork and then execute two or more piped commands in the child process. My idea is to use a while loop to continuously fork and execute the command in one process while continuing the ...
0
votes
1answer
138 views

C executing a pipe: execlp works while execvp doesn't

Could someone explain to me why this gives the normal behavior (ls | cat) int fd[2]; pipe(fd); pid_t pid = fork(); if(pid > 0) { close(fd[0]); close(STDOUT_FILENO); ...
1
vote
2answers
206 views

Pipe is blocked by sub-process in Perl

I have written two perl scripts (parent.pl and child.pl), and their source codes are as follows: parent.pl: # file parent.pl $SIG{CHLD} = sub { while(waitpid(-1, WNOHANG) > 0) { ...
2
votes
1answer
210 views

no result!! using fork() to run execlp() with 2 pipes using dup2

I am writing a C program which will run Linux commands, like: cat /etc/passwd | grep list | cut -c 1-5 and i didnt have any result *here the parent wait for the first child(child_pid) to finish;and ...
0
votes
1answer
89 views

How to manage several worker processes with one master process in ruby?

I need to develop multi-process application in Ruby: one master process manage several worker processes. Master creates (forks! I dont want multithreading, but multiprocessing) pull of workers and ...
3
votes
1answer
91 views

Random characters when reading from pipe

In the following code : ... char *message = "This is the message!"; ... printf("Writing to file descriptor FD[%i] \n", fd[1]); write( fd[1], message, strlen(message)); ...
0
votes
1answer
32 views

Emulating pipes

I've just recently learned about pipes and I would like to emulate the "|" gimmick provided by shells. In the code below, the parent process spawns 2 child processes, after which they do their piping ...
-3
votes
1answer
70 views

Unix Shell in C Pipe prob [closed]

I am currently working on a unix shell c. My problem is the pipe, I have traveled many forums and I can not solve it. I go through a temporary file. Thank you in advance. Code here : ...
0
votes
0answers
47 views

Implementing pipe with fork

I am a novice to unix and have been reading the pages for pipes to try to create an implementation in a shell that forks two processes and connects them with a pipe. This is homework. What do I need ...
-1
votes
1answer
168 views

C fork and pipe program with non-deterministic output

Lets consider the following code (please do not write, that there are naming problems, structuring problems, etc, I know this, too). It was written to write out the random generated x,y,z and r (and ...

1 2 3