summaryrefslogtreecommitdiff
path: root/ace/ReactorEx.i
blob: a5cd53034a2e949fd66fd6a9d6d31bcf79e900e0 (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
29
30
31
/* -*- 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,
			      ACE_Event_Handler *wait_all_callback,
			      int alertable)
{
  return this->handle_events (&how_long, wait_all, 
			      wait_all_callback, alertable);
}

#endif /* ACE_WIN32 */