#include <Semaphore.hpp>
Public Member Functions | |
Semaphore () | |
Semaphore (Int32 initCount) | |
void | wait () |
bool | timedWait (UInt32 sTimeout, UInt32 usTimeout=0) |
void | signal () |
Int32 | getCount () |
Private Member Functions | |
Semaphore (const Semaphore &) | |
Semaphore & | operator= (const Semaphore &) |
Private Attributes | |
Int32 | m_curCount |
Condition | m_cond |
NonRecursiveMutex | m_mutex |
Definition at line 48 of file Semaphore.hpp.
|
Definition at line 51 of file Semaphore.hpp. |
|
Definition at line 54 of file Semaphore.hpp. |
|
|
|
Definition at line 86 of file Semaphore.hpp. References m_curCount, and m_mutex. |
|
|
|
Definition at line 80 of file Semaphore.hpp. References m_cond, m_curCount, m_mutex, and BLOCXX_NAMESPACE::Condition::notifyAll(). |
|
Definition at line 66 of file Semaphore.hpp. References m_cond, m_curCount, m_mutex, and BLOCXX_NAMESPACE::Condition::timedWait(). |
|
Definition at line 57 of file Semaphore.hpp. References m_cond, m_curCount, m_mutex, and BLOCXX_NAMESPACE::Condition::wait(). |
|
Definition at line 93 of file Semaphore.hpp. Referenced by signal(), timedWait(), and wait(). |
|
Definition at line 92 of file Semaphore.hpp. Referenced by getCount(), signal(), timedWait(), and wait(). |
|
Definition at line 94 of file Semaphore.hpp. Referenced by getCount(), signal(), timedWait(), and wait(). |