Home | History | Annotate | Download | only in decpp

Lines Matching defs:lock

33  * \brief Mutual exclusion lock
35 * Mutex class provides standard mutual exclusion lock functionality.
43 void lock (void) throw();
55 * \brief Scoped mutex lock.
57 * ScopedLock provides helper for maintaining Mutex lock for the duration
58 * of current scope. The lock is acquired in constructor and released
77 * \brief Acquire mutex lock.
83 * lock is released.
86 * succeed and increment lock count.
88 inline void Mutex::lock (void) throw()
94 * \brief Release mutex lock.
99 * In recursive mode the mutex will be released once the lock count reaches
108 * \brief Try to acquire lock.
109 * \return Returns true if lock was acquired and false otherwise.
122 * \brief Acquire scoped lock to mutex.
128 m_mutex.lock();