#include <Null_Mutex.h>
Inheritance diagram for ACE_Null_Mutex:

Public Member Functions | |
| ACE_Null_Mutex (const ACE_TCHAR *=0) | |
| ~ACE_Null_Mutex (void) | |
| int | remove (void) |
| Return 0. | |
| int | acquire (void) |
| Return 0. | |
| int | acquire (ACE_Time_Value &) |
Return -1 with errno == ETIME. | |
| int | acquire (ACE_Time_Value *) |
Return -1 with errno == ETIME. | |
| int | tryacquire (void) |
| Return 0. | |
| int | release (void) |
| Return 0. | |
| int | acquire_write (void) |
| Return 0. | |
| int | tryacquire_write (void) |
| Return 0. | |
| int | tryacquire_write_upgrade (void) |
| Return 0. | |
| int | acquire_read (void) |
| Return 0. | |
| int | tryacquire_read (void) |
| Return 0. | |
| void | dump (void) const |
| Dump the state of an object. | |
Public Attributes | |
| int | lock_ |
| Declare the dynamic allocation hooks. | |
Definition at line 45 of file Null_Mutex.h.
|
|
Definition at line 48 of file Null_Mutex.h. References ACE_TCHAR.
00049 : lock_ (0) {} |
|
|
Definition at line 50 of file Null_Mutex.h. References ACE_Null_Mutex.
00050 {}
|
|
|
Return -1 with
Definition at line 61 of file Null_Mutex.h. References ETIME.
00061 {errno = ETIME; return -1;}
|
|
|
Return -1 with
Definition at line 58 of file Null_Mutex.h. References ETIME.
00058 {errno = ETIME; return -1;}
|
|
|
Return 0.
Definition at line 55 of file Null_Mutex.h.
00055 {return 0;}
|
|
|
Return 0.
Definition at line 79 of file Null_Mutex.h.
00079 {return 0;}
|
|
|
Return 0.
Definition at line 70 of file Null_Mutex.h.
00070 {return 0;}
|
|
|
Dump the state of an object.
Reimplemented in ACE_Noop_Token. Definition at line 85 of file Null_Mutex.h.
00085 {}
|
|
|
Return 0.
Definition at line 67 of file Null_Mutex.h.
00067 {return 0;}
|
|
|
Return 0.
Definition at line 52 of file Null_Mutex.h.
00052 {return 0;}
|
|
|
Return 0.
Definition at line 64 of file Null_Mutex.h.
00064 {return 0;}
|
|
|
Return 0.
Definition at line 82 of file Null_Mutex.h.
00082 {return 0;}
|
|
|
Return 0.
Definition at line 73 of file Null_Mutex.h.
00073 {return 0;}
|
|
|
Return 0.
Definition at line 76 of file Null_Mutex.h.
00076 {return 0;}
|
|
|
Declare the dynamic allocation hooks.
Definition at line 90 of file Null_Mutex.h. |
1.3.6