#include <Synch.h>
Inheritance diagram for ACE_Manual_Event:


Public Methods | |
| ACE_Manual_Event (int initial_state=0, int type=USYNC_THREAD, const char *name=0, void *arg=0) | |
| constructor which will create manual event. More... | |
| ACE_Manual_Event (int initial_state, int type, const wchar_t *name, void *arg=0) | |
| constructor which will create manual event (wchar_t version). More... | |
| ~ACE_Manual_Event (void) | |
| Default dtor. More... | |
| void | dump (void) const |
| Dump the state of an object. More... | |
Public Attributes | |
| ACE_ALLOC_HOOK_DECLARE | |
| Declare the dynamic allocation hooks. More... | |
Specialization of Event mechanism which wakes up all waiting thread on <signal>. All platforms support process-scope locking support. However, only Win32 platforms support global naming and system-scope locking support.
Definition at line 934 of file Synch.h.
|
||||||||||||||||||||
|
constructor which will create manual event.
Definition at line 355 of file Synch.cpp. References ACE_TEXT_CHAR_TO_TCHAR.
00359 : ACE_Event (1, 00360 initial_state, 00361 type, 00362 ACE_TEXT_CHAR_TO_TCHAR (name), 00363 arg) 00364 { 00365 } |
|
||||||||||||||||||||
|
constructor which will create manual event (wchar_t version).
Definition at line 368 of file Synch.cpp. References ACE_TEXT_WCHAR_TO_TCHAR.
00372 : ACE_Event (1, 00373 initial_state, 00374 type, 00375 ACE_TEXT_WCHAR_TO_TCHAR (name), 00376 arg) 00377 { 00378 } |
|
|
Default dtor.
Definition at line 960 of file Synch.i.
00961 {
00962 }
|
|
|
Dump the state of an object.
Reimplemented from ACE_Event. Definition at line 382 of file Synch.cpp. References ACE_Event::dump.
00383 {
00384 ACE_Event::dump ();
00385 }
|
|
|
Declare the dynamic allocation hooks.
Reimplemented from ACE_Event. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002