summaryrefslogtreecommitdiff
path: root/ace/Module.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/Module.h')
-rw-r--r--ace/Module.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ace/Module.h b/ace/Module.h
index 0bebe00ffba..c9f89e6f24c 100644
--- a/ace/Module.h
+++ b/ace/Module.h
@@ -69,7 +69,7 @@ public:
~ACE_Module (void);
// Shutdown the Module.
- ACE_Module (const char *module_name,
+ ACE_Module (const ASYS_TCHAR *module_name,
ACE_Task<ACE_SYNCH_USE> *writer = 0,
ACE_Task<ACE_SYNCH_USE> *reader = 0,
void *args = 0,
@@ -77,7 +77,7 @@ public:
// Create an initialized module with <module_name> as its identity
// and <reader> and <writer> as its tasks.
- int open (const char *module_name,
+ int open (const ASYS_TCHAR *module_name,
ACE_Task<ACE_SYNCH_USE> *writer = 0,
ACE_Task<ACE_SYNCH_USE> *reader = 0,
void *a = 0,
@@ -120,9 +120,9 @@ public:
// Set and get pointer to sibling <ACE_Task> in an <ACE_Module>
// = Identify the module
- const char *name (void) const;
+ const ASYS_TCHAR *name (void) const;
// Get the module name.
- void name (const char *);
+ void name (const ASYS_TCHAR *);
// Set the module name.
// = Argument to the Tasks.
@@ -156,7 +156,7 @@ private:
// Pair of Tasks that form the "read-side" and "write-side" of the
// ACE_Module partitioning.
- char name_[MAXNAMLEN + 1];
+ ASYS_TCHAR name_[MAXNAMLEN + 1];
// Name of the ACE_Module.
ACE_Module<ACE_SYNCH_USE> *next_;