#include <Null_Condition.h>
Collaboration diagram for ACE_Null_Condition:
Public Member Functions | |
ACE_Null_Condition (const ACE_Null_Mutex &m, const ACE_TCHAR *=0, void *=0) | |
~ACE_Null_Condition (void) | |
int | remove (void) |
Returns 0. | |
int | wait (const ACE_Time_Value *=0) |
Returns -1 with == . | |
int | wait (ACE_Null_Mutex &, const ACE_Time_Value *=0) |
Returns -1 with == . | |
int | signal (void) |
Returns 0. | |
int | broadcast (void) |
Returns 0. | |
ACE_Null_Mutex & | mutex (void) |
void | dump (void) const |
Dump the state of an object. | |
Protected Attributes | |
ACE_Null_Mutex & | mutex_ |
Private Member Functions | |
void | operator= (const ACE_Null_Condition &) |
ACE_Null_Condition (const ACE_Null_Condition &) |
Definition at line 40 of file Null_Condition.h.
|
Definition at line 43 of file Null_Condition.h. References ACE_TCHAR.
00046 : mutex_ ((ACE_Null_Mutex &) m) {} |
|
Definition at line 48 of file Null_Condition.h.
00048 {} |
|
|
|
Returns 0.
Definition at line 64 of file Null_Condition.h.
00064 {return 0;}
|
|
Dump the state of an object.
Definition at line 68 of file Null_Condition.h.
00068 {} |
|
Definition at line 65 of file Null_Condition.h. Referenced by ACE_Token_Proxy::acquire(), ACE_Token_Proxy::handle_options(), ACE_Token_Proxy::renew(), and ACE_Token_Proxy::token_acquired().
00065 {return this->mutex_;}; |
|
|
|
Returns 0.
Definition at line 51 of file Null_Condition.h.
00051 {return 0;}
|
|
Returns 0.
Definition at line 61 of file Null_Condition.h. Referenced by ACE_Token_Proxy::token_acquired().
00061 {return 0;}
|
|
Returns -1 with == .
Definition at line 57 of file Null_Condition.h. References ETIME.
00058 {errno = ETIME; return -1;} |
|
Returns -1 with == .
Definition at line 54 of file Null_Condition.h. References ETIME. Referenced by ACE_Token_Proxy::handle_options().
00054 {errno = ETIME; return -1;} |
|
Definition at line 74 of file Null_Condition.h. |