blob: fda66981674d63e0cf21c052ed7e65c8f2a3b37f (
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$
#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 */
|