Question: Consider the following code: { int n; int m; void main() { n = 100; m = 0; thread 1 = count(n); thread 2 =
- 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++;
}
}
- What issues do you see with this code? How would you fix these issues?
- 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
Get step-by-step solutions from verified subject matter experts
