summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/Notify/lib/Driver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/Notify/lib/Driver.cpp')
-rw-r--r--TAO/orbsvcs/tests/Notify/lib/Driver.cpp16
1 files changed, 7 insertions, 9 deletions
diff --git a/TAO/orbsvcs/tests/Notify/lib/Driver.cpp b/TAO/orbsvcs/tests/Notify/lib/Driver.cpp
index 45850fbc5e2..94502a02c92 100644
--- a/TAO/orbsvcs/tests/Notify/lib/Driver.cpp
+++ b/TAO/orbsvcs/tests/Notify/lib/Driver.cpp
@@ -1,7 +1,6 @@
#include "Driver.h"
-
#include "ace/Dynamic_Service.h"
#include "ace/Thread_Manager.h"
#include "ace/Arg_Shifter.h"
@@ -61,7 +60,7 @@ check_supported_priorities (CORBA::ORB_ptr orb)
}
/*****************************************************************/
-TAO_Notify_Tests_Worker::TAO_Notify_Tests_Worker (void) :
+TAO_Notify_Tests_Worker::TAO_Notify_Tests_Worker () :
cmd_builder_ (0)
{
}
@@ -73,7 +72,7 @@ TAO_Notify_Tests_Worker::command_builder (TAO_Notify_Tests_Command_Builder* cmd_
}
int
-TAO_Notify_Tests_Worker::svc (void)
+TAO_Notify_Tests_Worker::svc ()
{
#if 0
ACE_hthread_t current;
@@ -108,7 +107,7 @@ TAO_Notify_Tests_Worker::svc (void)
/*****************************************************************/
-TAO_Notify_Tests_ORB_Run_Worker::TAO_Notify_Tests_ORB_Run_Worker (void)
+TAO_Notify_Tests_ORB_Run_Worker::TAO_Notify_Tests_ORB_Run_Worker ()
{
}
@@ -125,7 +124,7 @@ TAO_Notify_Tests_ORB_Run_Worker::run_period (ACE_Time_Value run_period)
}
int
-TAO_Notify_Tests_ORB_Run_Worker::svc (void)
+TAO_Notify_Tests_ORB_Run_Worker::svc ()
{
#if 0
// ACE_Thread::getprio() fails on systems that do not support thread
@@ -152,7 +151,6 @@ TAO_Notify_Tests_ORB_Run_Worker::svc (void)
ACE_DEBUG ((LM_ERROR, "Running ORB, timeout in %d sec\n", this->run_period_.sec ()));
this->orb_->run ();
-
}
catch (const CORBA::Exception&)
{
@@ -162,7 +160,7 @@ TAO_Notify_Tests_ORB_Run_Worker::svc (void)
/*****************************************************************/
-TAO_Notify_Tests_Driver::TAO_Notify_Tests_Driver (void)
+TAO_Notify_Tests_Driver::TAO_Notify_Tests_Driver ()
:cmd_builder_ (0), activation_manager_ (0), run_period_ (0,0), skip_priority_levels_check_ (0)
{
this->activation_manager_ = new TAO_Notify_Tests_Activation_Manager ();
@@ -262,7 +260,7 @@ TAO_Notify_Tests_Driver::init (int argc, ACE_TCHAR *argv[])
}
void
-TAO_Notify_Tests_Driver::run (void)
+TAO_Notify_Tests_Driver::run ()
{
// Task activation flags.
long flags =
@@ -310,7 +308,7 @@ TAO_Notify_Tests_Driver::run (void)
}
void
-TAO_Notify_Tests_Driver::shutdown (void)
+TAO_Notify_Tests_Driver::shutdown ()
{
this->orb_->shutdown ();
}