diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-26 20:37:21 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-07-26 20:37:21 +0000 |
commit | b9e8527bdedaa4a7619769ab434cfd70889609e4 (patch) | |
tree | 0db5559c09ddb0ebf5cec31bf897a3804a7f33ef /apps/Orbix-Examples/Event_Comm/Consumer/consumer.cpp | |
parent | f555b96d7a3aa2cd2c4083db218eab6caf643a56 (diff) | |
download | ATCD-b9e8527bdedaa4a7619769ab434cfd70889609e4.tar.gz |
*** empty log message ***
Diffstat (limited to 'apps/Orbix-Examples/Event_Comm/Consumer/consumer.cpp')
-rw-r--r-- | apps/Orbix-Examples/Event_Comm/Consumer/consumer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/Orbix-Examples/Event_Comm/Consumer/consumer.cpp b/apps/Orbix-Examples/Event_Comm/Consumer/consumer.cpp index b493f1a175e..29137661ce3 100644 --- a/apps/Orbix-Examples/Event_Comm/Consumer/consumer.cpp +++ b/apps/Orbix-Examples/Event_Comm/Consumer/consumer.cpp @@ -59,7 +59,7 @@ Consumer::handle_signal (int signum, siginfo_t *, ucontext_t *) void Consumer::run (void) { - if (ACE_Reactor::run_event_loop() == -1) + if (ACE_Reactor::run_event_loop () == -1) ACE_ERROR ((LM_ERROR, "%p\n", "run_reactor_event_loop")); } @@ -83,7 +83,7 @@ Consumer::Consumer (int argc, char *argv[]) ACE_ERROR ((LM_ERROR, "%p\n%a", "open", 1)); } - if (ACE_Reactor::instance()->register_handler (SIGINT, this) == -1) + if (ACE_Reactor::instance ()->register_handler (SIGINT, this) == -1) ACE_ERROR ((LM_ERROR, "%p\n", "register_handler")); } |