diff options
Diffstat (limited to 'ace/Mutex.h')
-rw-r--r-- | ace/Mutex.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Mutex.h b/ace/Mutex.h index 278e0a9ab9d..81155d08dc4 100644 --- a/ace/Mutex.h +++ b/ace/Mutex.h @@ -151,7 +151,7 @@ public: // = This should be protected but some C++ compilers complain... public: -#if defined (CHORUS) || defined (ACE_HAS_PTHREADS) || defined(ACE_HAS_STHREADS) +#if defined (ACE_HAS_PTHREADS) || defined(ACE_HAS_STHREADS) /// This lock resides in shared memory. ACE_mutex_t *process_lock_; @@ -161,7 +161,7 @@ public: * can destroy it). */ const ACE_TCHAR *lockname_; -#endif /* CHORUS || ACE_HAS_PTHREADS */ +#endif /* ACE_HAS_PTHREADS */ /// Mutex type supported by the OS. ACE_mutex_t lock_; |