blob: 602f9e89f7cf193a4f88eb8ad598977d8d4c3d4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
/* -*- 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 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,
ASYS_TEXT ("ACE_TP_Reactor::notify_handle: Wrong version of notify_handle() gets called")));
}
|