diff options
Diffstat (limited to 'ACE/examples/Threads/TSS_Obj.h')
-rw-r--r-- | ACE/examples/Threads/TSS_Obj.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/ACE/examples/Threads/TSS_Obj.h b/ACE/examples/Threads/TSS_Obj.h new file mode 100644 index 00000000000..7dc4e469851 --- /dev/null +++ b/ACE/examples/Threads/TSS_Obj.h @@ -0,0 +1,39 @@ +// $Id$ + +// ============================================================================ +// +// = LIBRARY +// tests +// +// = FILENAME +// TSS_Test.cpp +// +// = DESCRIPTION +// This program tests various features of ACE_Thread and the +// thread-specific storage variant of <ACE_SingletonEx>. +// +// = AUTHOR +// Prashant Jain and Doug Schmidt +// +// ============================================================================ + +#include "ace/Atomic_Op.h" +#include "ace/Synch_Traits.h" + +#if !defined (ACE_LACKS_PRAGMA_ONCE) +# pragma once +#endif /* ACE_LACKS_PRAGMA_ONCE */ + +class TSS_Obj + // = TITLE + // This object is stored in thread-specific storage. +{ +public: + TSS_Obj (void); + ~TSS_Obj (void); + +private: + + static ACE_Atomic_Op<ACE_SYNCH_MUTEX, int> count_; +}; + |