Consider the following code segment: How many unique processes are created? How many unique threads are created?

Systems Architecture
7th Edition
ISBN:9781305080195
Author:Stephen D. Burd
Publisher:Stephen D. Burd
Chapter11: Operating Systems
Section: Chapter Questions
Problem 9VE
icon
Related questions
Question

Consider the following code segment:

  1. How many unique processes are created?
  2. How many unique threads are created?
pid.t pid;
pid = fork();
if (pid == 0){ /* child process */
fork();
thread_create( . . .);
}
fork();
Transcribed Image Text:pid.t pid; pid = fork(); if (pid == 0){ /* child process */ fork(); thread_create( . . .); } fork();
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
Race Condition
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning