A semaphore is a programming concept that is frequently used to solve multi-threading problems. My question to the community:
What is a semaphore and how do you use it?
|
1
|
A semaphore is a programming concept that is frequently used to solve multi-threading problems. My question to the community: What is a semaphore and how do you use it?
|
||
|
|
|
|
Semaphore can also be used as a ... semaphore. For example if you have multiple process enqueuing data to a queue, and only one task consuming data from the queue. If you don't want your consuming task to constantly poll the queue for available data, you can use semaphore. Here the semaphore is not used as an exclusion mechanism, but as a signaling mechanism. The consuming task is waiting on the semaphore The producing task are posting on the semaphore. This way the consuming task is running when and only when there is data to be dequeued |
||
|
|
|
|
Think of semaphores as bouncers at a nightclub. There are a dedicated number of people that are allowed in the club at once. If the club is full no one is allowed to enter, but as soon as one person leaves another person might enter. It's simply a way to limit the number of consumers for a specific resource. For example to limit the number of simultaneous calls to a database in an application. Here is a very pedagogic example in C# :-)
|
|||
|
|
|
|
A semaphore is an object containing a natural number (i.e. a integer greater or equal to zero) on which two modifying operations are defined. One operation, Because the natural number 0 cannot be decreased, calling As mentioned in other answers, semaphores can be used to restrict access to a certain resource to a maximum (but variable) number of processes. |
||
|
|
|
|
Mutex: exclusive-member access to a resource Semaphore: n-member access to a resource That is, a mutex can be used to syncronize access to a counter, file, database, etc. A sempahore can do the same thing but supports a fixed number of simultaneous callers. For example, I can wrap my database calls in a semaphore(3) so that my multithreaded app will hit the database with at most 3 simultaneous connections. All attempts will block until one of the three slots opens up. They make things like doing naive throttling really, really easy. |
||
|
|
|
|
Good article on Mutex's and Semaphores - what makes them different, and why they might or might not be used given various conditions. -Adam |
||
|
|
|
|
This is rep hunting: http://beta.stackoverflow.com/questions/34524/what-is-a-mutex |
||
|
|
|
@Craig:
This is not restricted to only one thread. A semaphore can be configured to allow a fixed number of threads to access a resource. |
||
|
|
|
|
A semaphore is a way to lock a resource so that it is guaranteed that while a piece of code is executed, only this piece of code has access to that resource. This keeps two threads from concurrently accesing a resource, which can cause problems. |
||
|
|