diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-03-17 22:50:07 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-03-17 22:50:07 +0000 |
commit | 82814eaf4eace275ff1a016f172589b8d25b162f (patch) | |
tree | 838219ce10242c92129ac198b5daccdb2a2268a8 /ace/WFMO_Reactor.i | |
parent | 23ec78401e35f9c73d914ae9902e9692ac971d76 (diff) | |
download | ATCD-82814eaf4eace275ff1a016f172589b8d25b162f.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/WFMO_Reactor.i')
-rw-r--r-- | ace/WFMO_Reactor.i | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/ace/WFMO_Reactor.i b/ace/WFMO_Reactor.i index 4c409077926..3caa922ad44 100644 --- a/ace/WFMO_Reactor.i +++ b/ace/WFMO_Reactor.i @@ -657,12 +657,6 @@ ACE_WFMO_Reactor::resume_handlers (void) } ACE_INLINE int -ACE_WFMO_Reactor::handle_events (ACE_Time_Value &how_long) -{ - return this->event_handling (&how_long, 0); -} - -ACE_INLINE int ACE_WFMO_Reactor::uses_event_associations (void) { // Since the WFMO_Reactor does use event associations, this function @@ -671,21 +665,27 @@ ACE_WFMO_Reactor::uses_event_associations (void) } ACE_INLINE int +ACE_WFMO_Reactor::handle_events (ACE_Time_Value &how_long) +{ + return this->event_handling (&how_long, FALSE); +} + +ACE_INLINE int ACE_WFMO_Reactor::alertable_handle_events (ACE_Time_Value &how_long) { - return this->event_handling (&how_long, 1); + return this->event_handling (&how_long, TRUE); } ACE_INLINE int ACE_WFMO_Reactor::handle_events (ACE_Time_Value *how_long) { - return this->event_handling (how_long, 0); + return this->event_handling (how_long, FALSE); } ACE_INLINE int ACE_WFMO_Reactor::alertable_handle_events (ACE_Time_Value *how_long) { - return this->event_handling (how_long, 1); + return this->event_handling (how_long, TRUE); } ACE_INLINE int @@ -748,6 +748,12 @@ ACE_WFMO_Reactor::safe_dispatch (int wait_status) return result; } +ACE_INLINE int +ACE_WFMO_Reactor::dispatch_window_messages (void) +{ + return 0; +} + ACE_INLINE void ACE_WFMO_Reactor::wakeup_all_threads (void) { |