Menu Close

Semaphore Practice

a semaphore is a variable or abstract data type that is used for controlling access, by multiple processes, to a common resource in a parallel programming or a multi user environment.

A useful way to think of a semaphore is as a record of how many units of a particular resource are available, coupled with operations to safely (i.e., without race conditions) adjust that record as units are required or become free, and, if necessary, wait until a unit of the resource becomes available.

Below is the link of some good practice questions. Discussed in class.

http://6004.mit.edu/Fall14/tutprobs/semaphores.html

Leave a Reply

Your email address will not be published. Required fields are marked *