summaryrefslogtreecommitdiff
path: root/ace/Other/Msg_WFMO_Reactor.i
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Other/Msg_WFMO_Reactor.i')
-rw-r--r--ace/Other/Msg_WFMO_Reactor.i30
1 files changed, 30 insertions, 0 deletions
diff --git a/ace/Other/Msg_WFMO_Reactor.i b/ace/Other/Msg_WFMO_Reactor.i
new file mode 100644
index 00000000000..c8d7f25c8d7
--- /dev/null
+++ b/ace/Other/Msg_WFMO_Reactor.i
@@ -0,0 +1,30 @@
+/* -*- C++ -*- */
+// $Id$
+
+#if defined (ACE_WIN32) && !defined (ACE_LACKS_MSG_WFMO)
+
+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 && !ACE_LACKS_MSG_WFMO */