Question: Class MyList given below uses a binary Semaphore to make the methods set and inc thread safe. The solution uses coarse - grained synchronization. Re
Class MyList given below uses a binary Semaphore to make the methods set and inc thread safe. The solution uses coarsegrained synchronization. Rewrite the class using semaphores to provide a finegrained synchronized solution that makes the class thread safe.
class MyList
private int list new int;
private Semaphore lock new Semaphore; MyList
forint j ; j ; j listjintMathrandom;
public void setint x int indassume ind trylockacquire;
catchInterruptedException e listind x;
lock.release;
public void incint x int indassume ind
trylockacquire; catchInterruptedException e listind x;
lock.release;
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
