I have this code that is supposed to create three child process' and each will perform a small mathematical operation. Then, the parent is supposed to use the results from all the child process' and get a final answer but I can't find a way to actually read the result from the child in the parent. Is there a way to do this?
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>
int main(void)
{
int pid1, pid2, pid3, status;
int a=1, b=2, c=5, d=4, e=6, f=3, g;
int t1, t2, t3;
printf("Hello World!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n");
printf("Here I am before use of forking\n");
printf("I am the PARENT process and pid is : %d\n",getpid());
pid1 = fork( );
if (pid1 == 0)
{
printf("\n\nHere I am just after child forking1\n");
printf("I am the Child process and pid1 is :%d\n",getpid());
printf("My parent's pid is :%d\n",getppid());
t1 = a+b;
printf("The answer for t1 is: %d\n", t1);
exit(0);
}
else
{
wait(&status);
printf("\nHere I am just after parent forking1\n");
printf("I am the Parent process and pid is: %d\n",getpid());
}
pid2 = fork( );
if (pid2 == 0)
{
printf("\n\nHere I am just after child forking2\n");
printf("I am the Child process and pid2 is :%d\n",getpid());
printf("My parent's pid is :%d\n",getppid());
t2 = c+d;
printf("The answer for t2 is: %d\n", t2);
exit(0);
}
else
{
wait(&status);
printf("\nHere I am just after parent forking2\n");
printf("I am the Parent process and pid is: %d\n",getpid());
}
pid3 = fork( );
if (pid3 == 0)
{
printf("\n\nHere I am just after child forking3\n");
printf("I am the Child process and pid3 is :%d\n",getpid());
printf("My parent's pid is :%d\n",getppid());
t3 = e/f;
printf("The answer for t3 is: %d\n", t3);
exit(0);
}
else
{
wait(&status);
printf("\nHere I am just after parent forkingALL\n");
printf("I am the Parent process and pid is: %d\n",getpid());
}
printf("\n\nThe final answer for t1 is: %d\n", t1);
printf("The final answer for t2 is: %d\n", t2);
printf("The final answer for t3 is: %d\n", t3);
g = t1*t2-t3;
printf("The final answer for g is: %d\n", g);
}
If you want to do it without using any way of communication i.e pipes, shared memory then you will have to use
exit()
system call. Theexit
system call return a signal that is then caught bywait()
system call in parent process. Here I am giving you a code in which I am sending a value from child to parent. One last thing you have to divide the signal caught by wait by 255 to get the exact value. ``
You can do this with a very easy technique, which is shared memory. I will give a complete example of how it works.
First, let's assume I want to write a program to print the first
n
terms in Fibonacci series (and I know it is not that logical to do so, but it is an easy example so everyone can understand it).n
termsn
to itYou have to create pipe in the parent process, than after fork you must to close input file descriptor in the child process and close output file descriptor in the parent process.
There is example from the pipe(2) man page.
fork
makes a copy of the process, so once you callfork
child processes have their own copy of the variables t1, t2 and t3 which you expect to read from the parent.So once you
exit
children, the children die along with the calculated values which are local to them.If you want to read values from children, you have to use
pipes
or shared memory.