summaryrefslogtreecommitdiff
path: root/examples/APG/Timers/Upcall.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/APG/Timers/Upcall.cpp')
-rw-r--r--examples/APG/Timers/Upcall.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/APG/Timers/Upcall.cpp b/examples/APG/Timers/Upcall.cpp
index fa466196c07..1d4b0dbb844 100644
--- a/examples/APG/Timers/Upcall.cpp
+++ b/examples/APG/Timers/Upcall.cpp
@@ -8,7 +8,7 @@
// Listing 2 code/ch20
// The signature of this method changed at ACE 5.4. The 'recurring_timer'
// parameter was added.
-int
+int
UpcallHandler::timeout (PTimerQueue &,
PCB *handler,
const void *arg,
@@ -160,8 +160,8 @@ int ACE_TMAIN (int, ACE_TCHAR *[])
tv += 20L;
// Schedule two different timers to go off.
- PTimer::instance ()->schedule (&cb1, &arg1, tv, ACE_Time_Value (1));
- PTimer::instance ()->schedule (&cb2, &arg2, tv, ACE_Time_Value (2));
+ PTimer::instance ()->schedule (&cb1, &arg1, tv, 1);
+ PTimer::instance ()->schedule (&cb2, &arg2, tv, 2);
// Run the timer event loop forever.
PTimer::instance ()->wait_for_event ();