diff options
Diffstat (limited to 'docs/tutorials/002/server.cpp')
-rw-r--r-- | docs/tutorials/002/server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorials/002/server.cpp b/docs/tutorials/002/server.cpp index 3066427c9cd..cfef3aa1a59 100644 --- a/docs/tutorials/002/server.cpp +++ b/docs/tutorials/002/server.cpp @@ -21,7 +21,7 @@ typedef ACE_Acceptor <Logging_Handler, ACE_SOCK_ACCEPTOR> Logging_Acceptor; /* One of the new things will be a signal handler so that we can exit the application somewhat cleanly. The 'finished' flag is used instead of the previous infninite loop and the 'handler' will set - that flag in respose to SIGINT (CTRL-C). + that flag in respose to SIGINT (CTRL-C). The invocation of ACE_Reactor::notify() will cause the handle_events() to return so that we can see the new value of 'finished'. */ |