summaryrefslogtreecommitdiff
path: root/ACE/ace/Remote_Tokens.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Remote_Tokens.h')
-rw-r--r--ACE/ace/Remote_Tokens.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/ACE/ace/Remote_Tokens.h b/ACE/ace/Remote_Tokens.h
index 3e6e52a25c8..0b8a3a80394 100644
--- a/ACE/ace/Remote_Tokens.h
+++ b/ACE/ace/Remote_Tokens.h
@@ -70,7 +70,7 @@ public:
* is, every thread has only one connection that is used for all
* remote tokens.
*/
- int initiate_connection (void);
+ int initiate_connection ();
/**
* Acquire the distributed token. If notify is specified and the
@@ -126,7 +126,7 @@ public:
virtual void token_acquired (ACE_TPQ_Entry *);
/// The client id of the current token holder
- virtual const ACE_TCHAR* owner_id (void);
+ virtual const ACE_TCHAR* owner_id ();
/**
* Sets the server address for all instances of ACE_Remote_Token_Proxy
@@ -166,7 +166,7 @@ class ACE_Export ACE_Remote_Mutex : public ACE_Remote_Token_Proxy
{
public:
/// Null creation. Remote_Token_Proxy::open must be called.
- ACE_Remote_Mutex (void);
+ ACE_Remote_Mutex ();
/// Calls Remote_Token_Proxy::open for you.
ACE_Remote_Mutex (const ACE_TCHAR *token_name,
@@ -201,7 +201,7 @@ protected:
class ACE_Export ACE_Remote_RLock : public ACE_Remote_Token_Proxy
{
public:
- ACE_Remote_RLock (void);
+ ACE_Remote_RLock ();
ACE_Remote_RLock (const ACE_TCHAR *token_name,
int ignore_deadlock = 0,
@@ -239,7 +239,7 @@ protected:
class ACE_Export ACE_Remote_WLock : public ACE_Remote_Token_Proxy
{
public:
- ACE_Remote_WLock (void);
+ ACE_Remote_WLock ();
ACE_Remote_WLock (const ACE_TCHAR *token_name,
int ignore_deadlock = 0,
@@ -275,18 +275,18 @@ class ACE_Export ACE_TSS_Connection : public ACE_TSS<ACE_SOCK_Stream>
{
public:
// Necessary to make some compilers work...
- ACE_TSS_Connection (void);
- ~ACE_TSS_Connection (void);
+ ACE_TSS_Connection ();
+ ~ACE_TSS_Connection ();
/// Retrieve the thread's connection
- ACE_SOCK_Stream *get_connection (void);
+ ACE_SOCK_Stream *get_connection ();
/// Factory Method that creates a new SOCK Stream.
virtual ACE_SOCK_Stream *make_TSS_TYPE () const;
/// Inheritance and operator overloading don't mix. Redefine this
/// from ACE_TSS so that we can use it.
- operator ACE_SOCK_Stream *(void);
+ operator ACE_SOCK_Stream *();
/// Set the server address.
static void set_server_address (const ACE_INET_Addr &server_address);