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/Msg_WFMO_Reactor.i | |
parent | 23ec78401e35f9c73d914ae9902e9692ac971d76 (diff) | |
download | ATCD-82814eaf4eace275ff1a016f172589b8d25b162f.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Msg_WFMO_Reactor.i')
-rw-r--r-- | ace/Msg_WFMO_Reactor.i | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/ace/Msg_WFMO_Reactor.i b/ace/Msg_WFMO_Reactor.i new file mode 100644 index 00000000000..e9f5bd2c70c --- /dev/null +++ b/ace/Msg_WFMO_Reactor.i @@ -0,0 +1,30 @@ +/* -*- 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 */ |