ACE
6.4.2
|
Implement a do nothing ACE_Semaphore, i.e., all the methods are no ops. More...
#include <Null_Semaphore.h>
Public Member Functions | |
ACE_Null_Semaphore (unsigned int=1, int=0, const ACE_TCHAR *=0, void *=0, int=0x7fffffff) | |
~ACE_Null_Semaphore (void) | |
int | remove (void) |
Return 0. More... | |
int | acquire (void) |
Return 0. More... | |
int | acquire (ACE_Time_Value &) |
Return -1 with errno == ETIME . More... | |
int | acquire (ACE_Time_Value *) |
Return -1 with errno == ETIME . More... | |
int | tryacquire (void) |
Return 0. More... | |
int | release (void) |
Return 0. More... | |
int | release (size_t) |
Return 0. More... | |
int | acquire_write (void) |
Return 0. More... | |
int | tryacquire_write (void) |
Return 0. More... | |
int | tryacquire_write_upgrade (void) |
Return 0. More... | |
int | acquire_read (void) |
Return 0. More... | |
int | tryacquire_read (void) |
Return 0. More... | |
void | dump (void) const |
Dump the state of an object. More... | |
Implement a do nothing ACE_Semaphore, i.e., all the methods are no ops.
Although the methods are no-ops, the return values are different for the blocking as opposed to timed acquires. The blocking version of acquire() is often used to serialize access to a critical section, whereas the timed version is often used to wait for another thread to update some condition or change some shared state. When using an ACE_Null_Semaphore, however, there's no other thread involved to change a state or condition (otherwise, a null semaphore would be inappropriate). Returning an error value signifies that the state or condition has not been (and can't be) changed, which is consistent with the behavior of the threaded case where a timeout occurs before the state or condition is changed.
|
inline |
|
inline |
|
inline |
Return 0.
|
inline |
Return -1 with errno
== ETIME
.
|
inline |
Return -1 with errno
== ETIME
.
|
inline |
Return 0.
|
inline |
Return 0.
|
inline |
Dump the state of an object.
|
inline |
Return 0.
|
inline |
Return 0.
|
inline |
Return 0.
|
inline |
Return 0.
|
inline |
Return 0.
|
inline |
Return 0.
|
inline |
Return 0.