summaryrefslogtreecommitdiff
path: root/ace/ReactorEx.i
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-10-21 21:41:34 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1996-10-21 21:41:34 +0000
commita5fdebc5f6375078ec1763850a4ca23ec7fe6458 (patch)
treebcf0a25c3d45a209a6e3ac37b233a4812f29c732 /ace/ReactorEx.i
downloadATCD-a5fdebc5f6375078ec1763850a4ca23ec7fe6458.tar.gz
Initial revision
Diffstat (limited to 'ace/ReactorEx.i')
-rw-r--r--ace/ReactorEx.i28
1 files changed, 28 insertions, 0 deletions
diff --git a/ace/ReactorEx.i b/ace/ReactorEx.i
new file mode 100644
index 00000000000..8ee3423cd22
--- /dev/null
+++ b/ace/ReactorEx.i
@@ -0,0 +1,28 @@
+/* -*- C++ -*- */
+// $Id$
+
+#if defined (ACE_WIN32)
+
+ACE_INLINE int
+ACE_ReactorEx::cancel_timer (ACE_Event_Handler *handler)
+{
+ ACE_TRACE ("ACE_ReactorEx::cancel_timer");
+ return this->timer_queue_.cancel (handler);
+}
+
+ACE_INLINE int
+ACE_ReactorEx::cancel_timer (int timer_id,
+ const void **arg)
+{
+ ACE_TRACE ("ACE_ReactorEx::cancel_timer");
+ return this->timer_queue_.cancel (timer_id, arg);
+}
+
+ACE_INLINE int
+ACE_ReactorEx::handle_events (ACE_Time_Value &how_long,
+ int wait_all)
+{
+ return this->handle_events (&how_long, wait_all);
+}
+
+#endif /* ACE_WIN32 */