summaryrefslogtreecommitdiff
path: root/ace/Process_Mutex.h
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-10-03 21:48:59 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-10-03 21:48:59 +0000
commita54cb2c9f92a2bcf2c7fb7494c9c9332774a9d6f (patch)
treee4c66900f1d29bf7b66b040f2293f80bd6f72d3f /ace/Process_Mutex.h
parent44f1b092021a3f36c96c12712e2278a99496f28c (diff)
downloadATCD-a54cb2c9f92a2bcf2c7fb7494c9c9332774a9d6f.tar.gz
ChangeLogTag:Tue Oct 3 14:25:09 2000 Darrell Brunsch <brunsch@uci.edu>
Diffstat (limited to 'ace/Process_Mutex.h')
-rw-r--r--ace/Process_Mutex.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/ace/Process_Mutex.h b/ace/Process_Mutex.h
index 1be7bd1877f..241c7375370 100644
--- a/ace/Process_Mutex.h
+++ b/ace/Process_Mutex.h
@@ -42,10 +42,16 @@ class ACE_Export ACE_Process_Mutex
// the same host machine, as well as within a process, of
// course.
public:
- ACE_Process_Mutex (const ACE_TCHAR *name = 0,
+ ACE_Process_Mutex (const char *name = 0,
void *arg = 0);
// Create a Process_Mutex, passing in the optional <name>.
+#if defined (ACE_HAS_WCHAR)
+ ACE_Process_Mutex (const wchar_t *name,
+ void *arg = 0);
+ // Create a Process_Mutex, passing in the optional <name>. (wchar_t version)
+#endif /* ACE_HAS_WCHAR */
+
~ACE_Process_Mutex (void);
int remove (void);