diff options
Diffstat (limited to 'TAO/tests/COIOP')
-rw-r--r-- | TAO/tests/COIOP/Client_Task.cpp | 3 | ||||
-rw-r--r-- | TAO/tests/COIOP/Client_Task.h | 3 | ||||
-rw-r--r-- | TAO/tests/COIOP/Hello.cpp | 4 | ||||
-rw-r--r-- | TAO/tests/COIOP/Hello.h | 4 | ||||
-rw-r--r-- | TAO/tests/COIOP/Server_Task.cpp | 2 | ||||
-rw-r--r-- | TAO/tests/COIOP/Server_Task.h | 2 |
6 files changed, 8 insertions, 10 deletions
diff --git a/TAO/tests/COIOP/Client_Task.cpp b/TAO/tests/COIOP/Client_Task.cpp index 37c5c9a9a99..eca3d47e0bd 100644 --- a/TAO/tests/COIOP/Client_Task.cpp +++ b/TAO/tests/COIOP/Client_Task.cpp @@ -15,7 +15,7 @@ Client_Task::Client_Task (const ACE_TCHAR *ior, } int -Client_Task::svc (void) +Client_Task::svc () { try { @@ -68,5 +68,4 @@ Client_Task::svc (void) } return 0; - } diff --git a/TAO/tests/COIOP/Client_Task.h b/TAO/tests/COIOP/Client_Task.h index 1f3fa76b019..6d28b35b980 100644 --- a/TAO/tests/COIOP/Client_Task.h +++ b/TAO/tests/COIOP/Client_Task.h @@ -14,7 +14,6 @@ class Client_Task : public ACE_Task_Base { public: - /// Constructor Client_Task (const ACE_TCHAR *input, CORBA::ORB_ptr corb, @@ -22,7 +21,7 @@ public: CORBA::Boolean result); /// Thread entry point - int svc (void); + int svc (); private: const ACE_TCHAR *input_; diff --git a/TAO/tests/COIOP/Hello.cpp b/TAO/tests/COIOP/Hello.cpp index 5874626a298..baa9705bec3 100644 --- a/TAO/tests/COIOP/Hello.cpp +++ b/TAO/tests/COIOP/Hello.cpp @@ -13,7 +13,7 @@ Hello::Hello (CORBA::ORB_ptr orb, } char * -Hello::get_string (void) +Hello::get_string () { ACE_DEBUG ((LM_DEBUG, "(%P|%t) Upcall in process ..\n")); @@ -56,7 +56,7 @@ Hello::get_string (void) } void -Hello::shutdown (void) +Hello::shutdown () { // Give the client thread time to return from the collocated // call to this method before shutting down the ORB. We sleep diff --git a/TAO/tests/COIOP/Hello.h b/TAO/tests/COIOP/Hello.h index 043a6968853..e9c0f470f49 100644 --- a/TAO/tests/COIOP/Hello.h +++ b/TAO/tests/COIOP/Hello.h @@ -15,9 +15,9 @@ public: ACE_thread_t thr_id); // = The skeleton methods - virtual char * get_string (void); + virtual char * get_string (); - virtual void shutdown (void); + virtual void shutdown (); private: /// Use an ORB reference to convert strings to objects and shutdown diff --git a/TAO/tests/COIOP/Server_Task.cpp b/TAO/tests/COIOP/Server_Task.cpp index 04abb027a27..5461b87cf73 100644 --- a/TAO/tests/COIOP/Server_Task.cpp +++ b/TAO/tests/COIOP/Server_Task.cpp @@ -17,7 +17,7 @@ Server_Task::Server_Task (const ACE_TCHAR *output, } int -Server_Task::svc (void) +Server_Task::svc () { try { diff --git a/TAO/tests/COIOP/Server_Task.h b/TAO/tests/COIOP/Server_Task.h index cea47faeb95..9f6a4ffa912 100644 --- a/TAO/tests/COIOP/Server_Task.h +++ b/TAO/tests/COIOP/Server_Task.h @@ -27,7 +27,7 @@ public: ACE_Thread_Manager *thr_mgr); /// Thread entry point - int svc (void); + int svc (); private: /// Output file for IOR |