www.digitalmars.com

D Programming Language 2.0

Last update Tue Jan 1 10:14:39 2013

core.sync.mutex

The mutex module provides a primitive for maintaining mutually exclusive access.

License:
Boost License 1.0

Authors:
Sean Kelly

Source:
core/sync/mutex.d

class Mutex: object.Object.Monitor;
This class represents a general purpose, recursive mutex.

this();
Initializes a mutex object.

Throws:
SyncException on error.

this(Object o);
Initializes a mutex object and sets it as the monitor for o.

In:
o must not already have a monitor.

@trusted void lock();
If this lock is not already held by the caller, the lock is acquired, then the internal counter is incremented by one.

Throws:
SyncException on error.

@trusted void unlock();
Decrements the internal lock count by one. If this brings the count to zero, the lock is released.

Throws:
SyncException on error.

bool tryLock();
If the lock is held by another caller, the method returns. Otherwise, the lock is acquired if it is not already held, and then the internal counter is incremented by one.

Throws:
SyncException on error.

Returns:
true if the lock was acquired and false if not.