I have this example of pipe and dup use. It is supposed to create a ring of two processes connected by a pipe. Here is the code:
#include <unistd.h>
#define READ 0
#define WRITE 1
main (int argc, char *argv[]) {
int fd[2];
pipe(fd); //first call to pipe
dup2(fd[READ],0);
dup2(fd[WRITE],1);
close(fd[READ]);
close(fd[WRITE]);
pipe(fd); //second call to pipe
if (fork()==0) {
dup2(fd[WRITE],1);
} else
dup2(fd[READ],0);
close(fd[READ]);
close(fd[WRITE]);
}
From "ring of two processes" I understand that the output of the process A is connected to the input of the process B, and the output of the process B is connected to the input of the process A.
After the first call of pipe, and the two succesive calls of dup2, I think the standard input and output were redirected to the input and output of my new pipe.
Then, it came the second call to pipe which confuses me, since I think it overwrites my previous fd values. At this point what is going on with the standard input and output?
Finally, the fork call:
does the child redirect the standard output to the pipe?
does the parent redirect the standard input to the pipe?
I can't see the ring here.
I hope I made myself clear, since I'm really confused.
Thank you very much!!