Question: 5. Let Process P1 and P2 be two processes that execute concurrently using a shared semaphore s initialized to 10. Each process increments, in an

5. Let Process P1 and P2 be two processes that execute concurrently using a shared semaphore s initialized to 10. Each process increments, in an infinite loop, an integer (process P1) orj (process P2) both initialized to 0. After process P2 terminates, the values ofandj will change considerably. In this case, what will be the relation between both variables? Begin Semaphore s; Integer i, j, x; s=10; i=0; j=0; ParEnd P1; P2; ParEnd End Program P1: Begin while(1) Program P2: Begin for(x=10;x20;X--); Acquire(s); i++; ; Release(s); End End a) =j b)j = +10 c) si c) i =j+10 d) { 2, +10
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
