summaryrefslogtreecommitdiff
path: root/ACE/netsvcs/clients/Tokens
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/netsvcs/clients/Tokens')
-rw-r--r--ACE/netsvcs/clients/Tokens/deadlock/deadlock_detection_test.cpp4
-rw-r--r--ACE/netsvcs/clients/Tokens/invariant/invariant.cpp2
-rw-r--r--ACE/netsvcs/clients/Tokens/manual/manual.cpp8
3 files changed, 7 insertions, 7 deletions
diff --git a/ACE/netsvcs/clients/Tokens/deadlock/deadlock_detection_test.cpp b/ACE/netsvcs/clients/Tokens/deadlock/deadlock_detection_test.cpp
index e6f4b2826c9..4818fb99785 100644
--- a/ACE/netsvcs/clients/Tokens/deadlock/deadlock_detection_test.cpp
+++ b/ACE/netsvcs/clients/Tokens/deadlock/deadlock_detection_test.cpp
@@ -200,7 +200,7 @@ parse_args (int argc, ACE_TCHAR *argv[])
}
int
-mutex_test (void)
+mutex_test ()
{
ACE_Thread_Manager thr_mgr;
@@ -242,7 +242,7 @@ mutex_test (void)
}
static int
-rwlock_test (void)
+rwlock_test ()
{
ACE_Thread_Manager thr_mgr;
diff --git a/ACE/netsvcs/clients/Tokens/invariant/invariant.cpp b/ACE/netsvcs/clients/Tokens/invariant/invariant.cpp
index 55d7b02ee4e..47da7c085b6 100644
--- a/ACE/netsvcs/clients/Tokens/invariant/invariant.cpp
+++ b/ACE/netsvcs/clients/Tokens/invariant/invariant.cpp
@@ -91,7 +91,7 @@ run_mutex (void *)
}
static int
-run_final_test (void)
+run_final_test ()
{
ACE_DEBUG ((LM_DEBUG, "starting mutex tests 1 & 2\n"));
diff --git a/ACE/netsvcs/clients/Tokens/manual/manual.cpp b/ACE/netsvcs/clients/Tokens/manual/manual.cpp
index 0f204851456..329a40b765e 100644
--- a/ACE/netsvcs/clients/Tokens/manual/manual.cpp
+++ b/ACE/netsvcs/clients/Tokens/manual/manual.cpp
@@ -36,7 +36,7 @@ class STDIN_Token : public ACE_Event_Handler
{
public:
/// Construction.
- STDIN_Token (void);
+ STDIN_Token ();
/// Parse command-line arguments.
int parse_args (int argc, ACE_TCHAR *argv[]);
@@ -54,7 +54,7 @@ public:
private:
/// Display options.
- void display_menu (void);
+ void display_menu ();
/// Get or make a proxy to <token> with a <tid> client id.
ACE_Token_Proxy *get_proxy (const char *tid, const char *token, char type);
@@ -85,7 +85,7 @@ private:
int remote_;
};
-STDIN_Token::STDIN_Token (void)
+STDIN_Token::STDIN_Token ()
: server_host_ (ACE_DEFAULT_SERVER_HOST),
server_port_ (ACE_DEFAULT_SERVER_PORT),
ignore_deadlock_ (0),
@@ -249,7 +249,7 @@ STDIN_Token::handle_input (ACE_HANDLE fd)
}
void
-STDIN_Token::display_menu (void)
+STDIN_Token::display_menu ()
{
ACE_OS::printf ("<tid> <token> <type> <operation>\n");
}