Changeset 76248 in webkit for trunk/Source/JavaScriptCore/wtf/ThreadIdentifierDataPthreads.h
- Timestamp:
- Jan 20, 2011, 8:30:54 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/wtf/ThreadIdentifierDataPthreads.h
r53714 r76248 32 32 #define ThreadIdentifierDataPthreads_h 33 33 34 #include <wtf/Noncopyable.h>35 34 #include <wtf/Threading.h> 36 35 … … 39 38 // Holds ThreadIdentifier in the thread-specific storage and employs pthreads-specific 2-pass destruction to reliably remove 40 39 // ThreadIdentifier from threadMap. It assumes regular ThreadSpecific types don't use multiple-pass destruction. 41 class ThreadIdentifierData : public Noncopyable { 40 class ThreadIdentifierData { 41 WTF_MAKE_NONCOPYABLE(ThreadIdentifierData); 42 42 public: 43 43 ~ThreadIdentifierData();
Note:
See TracChangeset
for help on using the changeset viewer.