|
| ACE_Manual_Event (int initial_state=0, int type=USYNC_THREAD, const char *name=0, void *arg=0) |
| Constructor which will create auto event. More...
|
|
| ACE_Manual_Event (int initial_state, int type, const wchar_t *name, void *arg=0) |
| Constructor which will create auto event (wchar_t version) More...
|
|
| ~ACE_Manual_Event () override=default |
| Default dtor. More...
|
|
| ACE_Manual_Event_T (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_T (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_T ()=default |
| Default dtor. More...
|
|
void | dump () const |
| Dump the state of an object. More...
|
|
| ACE_Event_T (int manual_reset=0, int initial_state=0, int type=USYNC_THREAD, const ACE_TCHAR *name=0, void *arg=0, LPSECURITY_ATTRIBUTES sa=0) |
| Constructor that creates event. More...
|
|
virtual | ~ACE_Event_T ()=default |
| Implicitly destroy the event variable. More...
|
|
ACE_Time_Value_T< ACE_System_Time_Policy > | gettimeofday () const |
|
void | set_time_policy (ACE_System_Time_Policy const &time_policy) |
|
virtual | ~ACE_Event_Base () |
| Implicitly destroy the event variable. More...
|
|
int | remove () |
|
ACE_event_t | handle () const |
| Underlying handle to event. More...
|
|
void | handle (ACE_event_t new_handle) |
|
int | wait () |
|
int | wait (const ACE_Time_Value *abstime, int use_absolute_time=1) |
|
int | signal () |
|
int | pulse () |
|
int | reset () |
| Set to nonsignaled state. More...
|
|
void | dump () const |
| Dump the state of an object. More...
|
|
Manual Events.
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.