summaryrefslogtreecommitdiff
path: root/examples/Reactor
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-07-16 00:12:57 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-07-16 00:12:57 +0000
commit437dada0adb19a40e4033262119251c396ee20d6 (patch)
tree6f9192f9f5b9f7baee1ac3f39d0545527d56057f /examples/Reactor
parentd5f3755c2057b8ad1448d52f93f4534532453717 (diff)
downloadATCD-437dada0adb19a40e4033262119251c396ee20d6.tar.gz
*** empty log message ***
Diffstat (limited to 'examples/Reactor')
-rw-r--r--examples/Reactor/Misc/test_demuxing.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/examples/Reactor/Misc/test_demuxing.cpp b/examples/Reactor/Misc/test_demuxing.cpp
index f0b44060f5b..26bc841a313 100644
--- a/examples/Reactor/Misc/test_demuxing.cpp
+++ b/examples/Reactor/Misc/test_demuxing.cpp
@@ -14,13 +14,13 @@
// Default is to have a 2 second timeout.
static int timeout = 2;
-// This class illustrates how to handle signal-driven I/O using the
-// ACE_Reactor framework. Note that signals may be caught and
-// processed without requiring the use of global signal handler
-// functions or global signal handler data.
-
class Sig_Handler : public ACE_Event_Handler
{
+ // = TITLE
+ // This class illustrates how to handle signal-driven I/O using
+ // the <ACE_Reactor> framework. Note that signals may be caught
+ // and processed without requiring the use of global signal
+ // handler functions or global signal handler data.
public:
Sig_Handler (void);
virtual ACE_HANDLE get_handle (void) const;
@@ -150,11 +150,11 @@ Sig_Handler::handle_signal (int signum, siginfo_t *, ucontext_t *)
return 0;
}
-// This class illustrates that the ACE_Reactor can handle signals,
-// STDIO, and timeouts using the same mechanisms.
-
class STDIN_Handler : public ACE_Event_Handler
{
+ // = TITLE
+ // This class illustrates that the ACE_Reactor can handle signals,
+ // STDIO, and timeouts using the same mechanisms.
public:
STDIN_Handler (void);
virtual int handle_input (ACE_HANDLE);