Changeset 107587 in webkit for trunk/Source/JavaScriptCore/wtf
- Timestamp:
- Feb 13, 2012, 11:05:27 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/wtf/ThreadSpecific.h
r106598 r107587 78 78 // a destructor defined can be confusing, given that it has such strong pre-requisites to work correctly. 79 79 ~ThreadSpecific(); 80 80 81 81 T* get(); 82 82 void set(T*); 83 83 void static destroy(void* ptr); 84 84 85 #if USE(PTHREADS) || PLATFORM(QT) || PLATFORM(GTK) || OS(WINDOWS)86 85 struct Data { 87 86 WTF_MAKE_NONCOPYABLE(Data); … … 95 94 #endif 96 95 }; 97 #endif98 96 99 97 #if USE(PTHREADS) … … 240 238 } 241 239 242 } 243 244 #endif 240 } // namespace WTF 241 242 #endif // WTF_ThreadSpecific_h
Note:
See TracChangeset
for help on using the changeset viewer.