summaryrefslogtreecommitdiff
path: root/ace/Remote_Tokens.h
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-05 09:52:56 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-05 09:52:56 +0000
commita88a9ed99c706658a9e6cdb5cdedbb3d977c6a62 (patch)
tree80ad8b136bf72d82f20771a08d5a39f4ffbab77d /ace/Remote_Tokens.h
parentc4c4914a8a212dffcedccf3ab15ec1118eab5bbb (diff)
downloadATCD-a88a9ed99c706658a9e6cdb5cdedbb3d977c6a62.tar.gz
Pure unicode fixes.
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 f9fd4ee6664..4aa5dab587c 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 char *name,
+ int open (const ASYS_TCHAR *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 char* owner_id (void);
+ virtual const ASYS_TCHAR* 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 char *token_name,
+ ACE_Remote_Mutex (const ASYS_TCHAR *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 char *name);
+ virtual ACE_Tokens *create_token (const ASYS_TCHAR *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 char *token_name,
+ ACE_Remote_RLock (const ASYS_TCHAR *token_name,
int ignore_deadlock = 0,
int debug = 0);
@@ -202,7 +202,7 @@ public:
// Return deep copy.
protected:
- virtual ACE_Tokens *create_token (const char *name);
+ virtual ACE_Tokens *create_token (const ASYS_TCHAR *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 char *token_name,
+ ACE_Remote_WLock (const ASYS_TCHAR *token_name,
int ignore_deadlock = 0,
int debug = 0);
@@ -238,7 +238,7 @@ public:
// Return deep copy.
protected:
- virtual ACE_Tokens *create_token (const char *name);
+ virtual ACE_Tokens *create_token (const ASYS_TCHAR *name);
// Make the correct type of ACE_Tokens. This is called by the Token
// Manager.
};