Question: int main () { pid t pid; pid = fork(); if (pid == 0) { fork(); thread create( . . .); } else if (pid
int main () { pid t pid; pid = fork(); if (pid == 0) { fork(); thread create( . . .); } else if (pid >0) { thread create( . . .); } else { printf(FORK FAILED ); } return 0; } How many master threads and worker threads are created? show thread creation with the help of fork diagram?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
