diff options
Diffstat (limited to 'ace/Msg_WFMO_Reactor.i')
-rw-r--r-- | ace/Msg_WFMO_Reactor.i | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/ace/Msg_WFMO_Reactor.i b/ace/Msg_WFMO_Reactor.i deleted file mode 100644 index e9f5bd2c70c..00000000000 --- a/ace/Msg_WFMO_Reactor.i +++ /dev/null @@ -1,30 +0,0 @@ -/* -*- C++ -*- */ -// $Id$ - -#if defined (ACE_WIN32) - -ACE_INLINE int -ACE_Msg_WFMO_Reactor::handle_events (ACE_Time_Value &how_long) -{ - return this->event_handling (&how_long, 0); -} - -ACE_INLINE int -ACE_Msg_WFMO_Reactor::alertable_handle_events (ACE_Time_Value &how_long) -{ - return this->event_handling (&how_long, MWMO_ALERTABLE); -} - -ACE_INLINE int -ACE_Msg_WFMO_Reactor::handle_events (ACE_Time_Value *how_long) -{ - return this->event_handling (how_long, 0); -} - -ACE_INLINE int -ACE_Msg_WFMO_Reactor::alertable_handle_events (ACE_Time_Value *how_long) -{ - return this->event_handling (how_long, MWMO_ALERTABLE); -} - -#endif /* ACE_WIN32 */ |