Multithreading - Multiprocessor operating systemsThe Cigarette Smokers ProblemConsider a simulation with three smoker threads and one agent thread. Eachsmoker continuously makes a cigarette and smokes it. But to make a cigarette, asmoker needs three ingredients: tobacco, paper, and matches. One of the smokerthreads has only paper, another has only tobacco, and the third has only matches.The agent thread has an infinite supply of all three materials....
Sunday, March 10, 2013
Sunday, March 3, 2013
Semaphores - Multiprocessor operating systems using Java
5:21 AM
Anna University, Java, ME CSE, Multiprocessor Operating System, OS Lab, Semaphore
No comments
/*PROGRAM 1 – Semaphores - Multiprocessor operating systemsAssume there are three processes: Pa, Pb, and Pc. Only Pa can outputthe letter A, Pb B, and Pc C.Utilizing only semaphores (and no other variables) the processes aresynchronized so that the output satisfies the following conditions:a) A B must be output before any C's can be output.b) B's and C's must alternate in the output string, that is, after thefirst B is output, another B cannot be...