Mutex.unlock

Decrements the internal lock count by one. If this brings the count to zero, the lock is released.

Note: Mutex.unlock does not throw, but a class derived from Mutex can throw. Use unlock_nothrow in nothrow @nogc code.

  1. void unlock()
  2. void unlock()
    class Mutex
    @trusted shared
    void
    unlock
    ()
  3. void unlock_nothrow()
Suggestion Box / Bug Report