diff options
author | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-10-03 21:48:59 +0000 |
---|---|---|
committer | brunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2000-10-03 21:48:59 +0000 |
commit | a54cb2c9f92a2bcf2c7fb7494c9c9332774a9d6f (patch) | |
tree | e4c66900f1d29bf7b66b040f2293f80bd6f72d3f /ace/Process_Mutex.h | |
parent | 44f1b092021a3f36c96c12712e2278a99496f28c (diff) | |
download | ATCD-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.h | 8 |
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); |