#include <ace/OS.h>
class ACE_TSS_Ref {
public:
ACE_TSS_Ref (ACE_thread_t id);
ACE_TSS_Ref (void);
int operator== (const ACE_TSS_Ref &) const;
int operator!= (const ACE_TSS_Ref &) const;
ACE_thread_t tid_;
};
ACE_Unbounded_Stack
doesn't allow duplicates, the
"reference count" is the identify of the thread_id.
ACE_TSS_Ref (ACE_thread_t id);
ACE_TSS_Ref (void);
int operator== (const ACE_TSS_Ref &) const;
int operator!= (const ACE_TSS_Ref &) const;
ACE_thread_t tid_;
schmidt@cs.wustl.edu
, Jesper S. M|ller
stophph@diku.dk
, and a cast of thousands...