summaryrefslogtreecommitdiff
path: root/TAO/tests/Big_Oneways
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Big_Oneways')
-rw-r--r--TAO/tests/Big_Oneways/Coordinator.cpp2
-rw-r--r--TAO/tests/Big_Oneways/Coordinator.h2
-rw-r--r--TAO/tests/Big_Oneways/Session.cpp2
-rw-r--r--TAO/tests/Big_Oneways/Session.h2
-rw-r--r--TAO/tests/Big_Oneways/Session_Control.cpp2
-rw-r--r--TAO/tests/Big_Oneways/Session_Control.h2
6 files changed, 6 insertions, 6 deletions
diff --git a/TAO/tests/Big_Oneways/Coordinator.cpp b/TAO/tests/Big_Oneways/Coordinator.cpp
index 3947b758e4c..7b5cb6645c6 100644
--- a/TAO/tests/Big_Oneways/Coordinator.cpp
+++ b/TAO/tests/Big_Oneways/Coordinator.cpp
@@ -14,7 +14,7 @@ Coordinator::~Coordinator (void)
}
int
-Coordinator::has_all_peers (void) const
+Coordinator::has_all_peers () const
{
return this->peer_count_ == this->peer_max_;
}
diff --git a/TAO/tests/Big_Oneways/Coordinator.h b/TAO/tests/Big_Oneways/Coordinator.h
index 04c4f1fbd32..72e79a9389e 100644
--- a/TAO/tests/Big_Oneways/Coordinator.h
+++ b/TAO/tests/Big_Oneways/Coordinator.h
@@ -15,7 +15,7 @@ public:
/// Check if all the peers have registered already
- int has_all_peers (void) const;
+ int has_all_peers () const;
/// Check a session on each peer
void create_session_list (Test::Session_Control_ptr session_control,
diff --git a/TAO/tests/Big_Oneways/Session.cpp b/TAO/tests/Big_Oneways/Session.cpp
index 5d22fa39b08..5f205cd73a8 100644
--- a/TAO/tests/Big_Oneways/Session.cpp
+++ b/TAO/tests/Big_Oneways/Session.cpp
@@ -209,7 +209,7 @@ Session::destroy (void)
}
int
-Session::more_work (void) const
+Session::more_work () const
{
if (this->expected_messages_ > 0
|| this->active_thread_count_ > 0
diff --git a/TAO/tests/Big_Oneways/Session.h b/TAO/tests/Big_Oneways/Session.h
index 7dad8676bc4..13fe7148e09 100644
--- a/TAO/tests/Big_Oneways/Session.h
+++ b/TAO/tests/Big_Oneways/Session.h
@@ -46,7 +46,7 @@ private:
void terminate (CORBA::Boolean success);
/// Return 1 if all the work in this session has been completed
- int more_work (void) const;
+ int more_work () const;
/// Make sure that all threads have connections avaiable to the
/// other sessions.
diff --git a/TAO/tests/Big_Oneways/Session_Control.cpp b/TAO/tests/Big_Oneways/Session_Control.cpp
index cacbbd889db..bccb40f881d 100644
--- a/TAO/tests/Big_Oneways/Session_Control.cpp
+++ b/TAO/tests/Big_Oneways/Session_Control.cpp
@@ -7,7 +7,7 @@ Session_Control::Session_Control (CORBA::ULong session_count)
}
int
-Session_Control::all_sessions_finished (void) const
+Session_Control::all_sessions_finished () const
{
return this->session_count_ == 0;
}
diff --git a/TAO/tests/Big_Oneways/Session_Control.h b/TAO/tests/Big_Oneways/Session_Control.h
index edb4799cc78..7b7791f5f67 100644
--- a/TAO/tests/Big_Oneways/Session_Control.h
+++ b/TAO/tests/Big_Oneways/Session_Control.h
@@ -20,7 +20,7 @@ public:
virtual ~Session_Control (void);
/// Return 1 when all sessions have finished
- int all_sessions_finished (void) const;
+ int all_sessions_finished () const;
// = The skeleton methods
virtual void session_finished (CORBA::Boolean success);