Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started