6. 4.17 Consider the following codesegment:
pid_t pid;
pid = fork();
if (pid == 0) { /* child process */
fork();
thread_create( . . .);
}
fork();
- How many unique processes are created?
- How many unique threads are created?
Expert Answer
An answer will be send to you shortly. . . . .