The semaphore
module provides a general use semaphore
for synchronization.
This class represents a general counting semaphore as concieved by Edsger Dijkstra. As per Mesa type monitors however, "signal" has been replaced with "notify" to indicate that control is not transferred to the waiter when a notification is sent.
Initializes a semaphore object with the specified initial count
.
uint count
| The initial count for the semaphore. |
Wait until the current count is above zero, then atomically decrement the count by one and return.
Suspends the calling thread until the current count moves above zero or until the supplied time period
has elapsed. If the count moves above zero in this interval, then atomically decrement the count by one and return true
. Otherwise, return false
.
Duration period
| The time to wait . |
period
must be non-negative. true
if notified before the timeout and false
if not.Atomically increment the current count by one. This will notify
one waiter, if there are any in the queue.
If the current count is equal to zero, return. Otherwise, atomically decrement the count by one and return true
.
true
if the count was above zero and false
if not.
© 1999–2017 The D Language Foundation
Licensed under the Boost License 1.0.
https://dlang.org/phobos/core_sync_semaphore.html