summaryrefslogtreecommitdiff
path: root/netsvcs
diff options
context:
space:
mode:
authorgonzo <gonzo@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-30 23:15:47 +0000
committergonzo <gonzo@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-07-30 23:15:47 +0000
commit08236b38d692da87405bad7b1b50a12d18e9b9e9 (patch)
tree79f9d9c3e75ccc808b7b9db1c2c086d6f0d39620 /netsvcs
parent48e877acd5f3f899072d3763183be523cd887059 (diff)
downloadATCD-08236b38d692da87405bad7b1b50a12d18e9b9e9.tar.gz
Moved a few methods from ACE to ACE_Event_Handler
Diffstat (limited to 'netsvcs')
-rw-r--r--netsvcs/clients/Naming/Client/Client_Test.cpp6
-rw-r--r--netsvcs/clients/Naming/Dump_Restore/Dump_Restore.cpp6
2 files changed, 6 insertions, 6 deletions
diff --git a/netsvcs/clients/Naming/Client/Client_Test.cpp b/netsvcs/clients/Naming/Client/Client_Test.cpp
index dec43fae5a1..68b07d322ef 100644
--- a/netsvcs/clients/Naming/Client/Client_Test.cpp
+++ b/netsvcs/clients/Naming/Client/Client_Test.cpp
@@ -120,9 +120,9 @@ Client_Test::open (void)
{
this->display_menu ();
- if (ACE::register_stdin_handler (this,
- ACE_Reactor::instance (),
- ACE_Thread_Manager::instance ()) == -1)
+ if (ACE_Event_Handler::register_stdin_handler (this,
+ ACE_Reactor::instance (),
+ ACE_Thread_Manager::instance ()) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "register_stdin_handler"), -1);
return 0;
}
diff --git a/netsvcs/clients/Naming/Dump_Restore/Dump_Restore.cpp b/netsvcs/clients/Naming/Dump_Restore/Dump_Restore.cpp
index 91bcdecc75d..b165015dc0e 100644
--- a/netsvcs/clients/Naming/Dump_Restore/Dump_Restore.cpp
+++ b/netsvcs/clients/Naming/Dump_Restore/Dump_Restore.cpp
@@ -35,9 +35,9 @@ Dump_Restore::Dump_Restore (int argc, char *argv[])
this->display_menu ();
- if (ACE::register_stdin_handler (this,
- ACE_Reactor::instance (),
- ACE_Thread_Manager::instance ()) == -1)
+ if (ACE_Event_Handler::register_stdin_handler (this,
+ ACE_Reactor::instance (),
+ ACE_Thread_Manager::instance ()) == -1)
ACE_ERROR ((LM_ERROR, "%p\n", "register_stdin_handler"));
}