diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-08-29 00:53:14 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-08-29 00:53:14 +0000 |
commit | e951c20cfdd9e21fc56f3b1a0524ddf622164216 (patch) | |
tree | 4c92d88379d515a648eed7dde749c337c9f3449f /tests | |
parent | a241989b1f42ca38153053b917e2adbb56f84ff1 (diff) | |
download | ATCD-e951c20cfdd9e21fc56f3b1a0524ddf622164216.tar.gz |
*** empty log message ***
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Async_Timer_Queue_Test.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/Async_Timer_Queue_Test.cpp b/tests/Async_Timer_Queue_Test.cpp index 05254dab693..4bed4b8b966 100644 --- a/tests/Async_Timer_Queue_Test.cpp +++ b/tests/Async_Timer_Queue_Test.cpp @@ -9,7 +9,7 @@ // Async_Timer_Queue_Test.cpp // // = DESCRIPTION -// This test exercises <ACE_Timer_Heap> in the context of +// This test exercises <ACE_Timer_List> in the context of // signal-based timer handling. // // = AUTHORS @@ -27,8 +27,12 @@ static int lines = 0; // Were we interrupted by a SIGINT? sig_atomic_t sigint = 0; +// This is our main timer list. Right now, it doesn't know anything +// about signals. static ACE_Timer_List timer_list; +// This is our signal handler function. It gets invoked +// asynchronously when SIGINT, SIGALRM, or SIGQUIT gets called. static void handler (int signum) { |