summaryrefslogtreecommitdiff
path: root/ace/Remote_Tokens.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Remote_Tokens.h')
-rw-r--r--ace/Remote_Tokens.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/ace/Remote_Tokens.h b/ace/Remote_Tokens.h
index 4aa5dab587c..f9fd4ee6664 100644
--- a/ace/Remote_Tokens.h
+++ b/ace/Remote_Tokens.h
@@ -51,7 +51,7 @@ public:
virtual ~ACE_Remote_Token_Proxy (void);
// Death.
- int open (const ASYS_TCHAR *name,
+ int open (const char *name,
int ignore_deadlock = 0,
int debug = 0);
// Same as Token_Proxy. <name> is the string uniquely identifying
@@ -113,7 +113,7 @@ public:
virtual void token_acquired (ACE_TPQ_Entry *);
// Override the default to do nothing.
- virtual const ASYS_TCHAR* owner_id (void);
+ virtual const char* owner_id (void);
// the client id of the current token holder
static void set_server_address (const ACE_INET_Addr &server_address);
@@ -153,7 +153,7 @@ public:
ACE_Remote_Mutex (void);
// Null creation. Remote_Token_Proxy::open must be called.
- ACE_Remote_Mutex (const ASYS_TCHAR *token_name,
+ ACE_Remote_Mutex (const char *token_name,
int ignore_deadlock = 0,
int debug = 0);
// Calls Remote_Token_Proxy::open for you.
@@ -165,7 +165,7 @@ public:
// Return deep copy.
protected:
- virtual ACE_Tokens *create_token (const ASYS_TCHAR *name);
+ virtual ACE_Tokens *create_token (const char *name);
// Make the correct type of ACE_Tokens. This is called by the Token
// Manager.
};
@@ -186,7 +186,7 @@ class ACE_Export ACE_Remote_RLock : public ACE_Remote_Token_Proxy
public:
ACE_Remote_RLock (void);
- ACE_Remote_RLock (const ASYS_TCHAR *token_name,
+ ACE_Remote_RLock (const char *token_name,
int ignore_deadlock = 0,
int debug = 0);
@@ -202,7 +202,7 @@ public:
// Return deep copy.
protected:
- virtual ACE_Tokens *create_token (const ASYS_TCHAR *name);
+ virtual ACE_Tokens *create_token (const char *name);
// Make the correct type of ACE_Tokens. This is called by the Token
// Manager.
};
@@ -222,7 +222,7 @@ class ACE_Export ACE_Remote_WLock : public ACE_Remote_Token_Proxy
public:
ACE_Remote_WLock (void);
- ACE_Remote_WLock (const ASYS_TCHAR *token_name,
+ ACE_Remote_WLock (const char *token_name,
int ignore_deadlock = 0,
int debug = 0);
@@ -238,7 +238,7 @@ public:
// Return deep copy.
protected:
- virtual ACE_Tokens *create_token (const ASYS_TCHAR *name);
+ virtual ACE_Tokens *create_token (const char *name);
// Make the correct type of ACE_Tokens. This is called by the Token
// Manager.
};