server/dep/ACE_wrappers/ace/Msg_WFMO_Reactor.inl

35 lines
817 B
C++

// -*- C++ -*-
//
// $Id: Msg_WFMO_Reactor.inl 80826 2008-03-04 14:51:23Z wotte $
#if defined (ACE_WIN32) && !defined (ACE_LACKS_MSG_WFMO)
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
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);
}
ACE_END_VERSIONED_NAMESPACE_DECL
#endif /* ACE_WIN32 && !ACE_LACKS_MSG_WFMO */