summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/Reactor/Misc/test_signals_1.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/Reactor/Misc/test_signals_1.cpp b/examples/Reactor/Misc/test_signals_1.cpp
index 7e5e705b6f6..0f37d77a80a 100644
--- a/examples/Reactor/Misc/test_signals_1.cpp
+++ b/examples/Reactor/Misc/test_signals_1.cpp
@@ -55,14 +55,13 @@ main (int argc, char *argv[])
// First you need a handler for the timeout.
My_Handler my_handler;
- // Now set up the timer.
-
// This is the timeout period in seconds.
ACE_Time_Value period (ACE_DEFAULT_TIMEOUT);
if (argc > 1)
period.set (ACE_OS::atoi (argv[1]));
+ // Set up the periodic interval timer.
if (ACE_Reactor::instance ()->schedule_timer
(&my_handler,
"hello",