summaryrefslogtreecommitdiff
path: root/ace/TP_Reactor.i
diff options
context:
space:
mode:
Diffstat (limited to 'ace/TP_Reactor.i')
-rw-r--r--ace/TP_Reactor.i39
1 files changed, 0 insertions, 39 deletions
diff --git a/ace/TP_Reactor.i b/ace/TP_Reactor.i
deleted file mode 100644
index 969a7fdaf02..00000000000
--- a/ace/TP_Reactor.i
+++ /dev/null
@@ -1,39 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-ACE_INLINE int
-ACE_TP_Reactor::handle_events (ACE_Time_Value &max_wait_time)
-{
- return ACE_Select_Reactor::handle_events (max_wait_time);
-}
-
-ACE_INLINE int
-ACE_TP_Reactor::mask_ops (ACE_Event_Handler *eh,
- ACE_Reactor_Mask mask,
- int ops)
-{
- return this->mask_ops (eh->get_handle (), mask, ops);
-}
-
-ACE_INLINE void
-ACE_TP_Reactor::wakeup_all_threads (void)
-{
- ACE_MT (this->token_.signal_all_threads (););
-
- // Send a notification, but don't block if there's no one to receive
- // it.
- this->notify (0,
- ACE_Event_Handler::NULL_MASK,
- (ACE_Time_Value *) &ACE_Time_Value::zero);
-}
-
-ACE_INLINE void
-ACE_TP_Reactor::notify_handle (ACE_HANDLE,
- ACE_Reactor_Mask,
- ACE_Handle_Set &,
- ACE_Event_Handler *,
- ACE_EH_PTMF)
-{
- ACE_ERROR ((LM_ERROR,
- ACE_TEXT ("ACE_TP_Reactor::notify_handle: Wrong version of notify_handle() gets called")));
-}