Question: Consider the following code: { int n; int m; void main() { n = 100; m = 0; thread 1 = count(n); thread 2 =

  1. Consider the following code:

{

int n;

int m;

void main()

{

n = 100;

m = 0;

thread 1 = count(n);

thread 2 = count(n);

thread 3 = count(n);

run (thread 1);

run (thread 2);

run (thread 3);

}

void count (int max)

{

int i;

for (i = 1, i <= max, i++)

m++;

}

}

  1. What issues do you see with this code? How would you fix these issues?
  2. What is the maximum possible final value of m? What is the minimum possible value of m? Justify your answer.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!