diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-29 20:31:47 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-08-29 20:31:47 +0000 |
commit | 68d077861ea8adb94ceca14ea2205e4fc80daae5 (patch) | |
tree | 24ecb55989bc5fcd96be8b8d843b8a13c5d41ca9 /ace/Synch.h | |
parent | b2761e1c901eae95747c3bec992e8cbe055e31cf (diff) | |
download | ATCD-68d077861ea8adb94ceca14ea2205e4fc80daae5.tar.gz |
started adding TSS emulation
Diffstat (limited to 'ace/Synch.h')
-rw-r--r-- | ace/Synch.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Synch.h b/ace/Synch.h index 43d311075f0..faaf66d1b1a 100644 --- a/ace/Synch.h +++ b/ace/Synch.h @@ -1244,18 +1244,18 @@ private: // pointer to actual lock }; -#if defined (ACE_WIN32) +#if defined (ACE_WIN32) || defined (ACE_HAS_TSS_EMULATION) class ACE_Export ACE_TSS_Cleanup_Lock // = TITLE // Provide an interface to access TSS cleanup lock for - // Win32. + // Win32 and emulated TSS. // // = DESCRIPTION // This class is used to serialize the access // of ACE_TSS_Cleanup object in OS.cpp. ACE_TSS_Cleanup // itself is expected to be managed by ACE_Object_Manager // later, so this class shall be removed/changed in - // the near future. + // the near future. Maybe. { public: static ACE_Thread_Mutex *instance (void); @@ -1265,7 +1265,7 @@ private: static ACE_Thread_Mutex *mutex_; // pointer to actual lock }; -#endif /* ACE_WIN32 */ +#endif /* ACE_WIN32 || ACE_HAS_TSS_EMULATION */ #endif /* ACE_HAS_THREADS */ |