Question
Concurrent and Parallel Programming Class MyList given below uses a binary Semaphore to make the methods set and inc thread safe. The solution uses coarse-grained
Concurrent and Parallel Programming
Class MyList given below uses a binary Semaphore to make the methods set and inc thread safe. The solution uses coarse-grained synchronization. Re-write the class using semaphores to provide a fine-grained synchronized solution that makes the class thread safe. class MyList{ private int[] list = new int[100]; private Semaphore lock = new Semaphore(1); MyList(){ for(int j = 0; j < 100; j++) list[j] = (int)(Math.random()*100); } public void set(int x, int ind){ //assume 0 <= ind < 100 try{lock.acquire();} catch(InterruptedException e){} list[ind] = x; lock.release(); } public void inc(int x, int ind){//assume 0 <= ind < 100 try{lock.acquire();} catch(InterruptedException e){} list[ind] += 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