Changeset 39708 in webkit for trunk/JavaScriptCore/wtf/ThreadingWin.cpp
- Timestamp:
- Jan 8, 2009, 8:47:14 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/ThreadingWin.cpp
r39604 r39708 65 65 66 66 #include "MainThread.h" 67 #if !USE(PTHREADS) && PLATFORM(WIN_OS) 68 #include "ThreadSpecific.h" 69 #endif 67 70 #include <process.h> 68 71 #include <windows.h> … … 175 178 176 179 void* result = invocation.function(invocation.data); 180 181 #if !USE(PTHREADS) && PLATFORM(WIN_OS) 182 // Do the TLS cleanup. 183 ThreadSpecificThreadExit(); 184 #endif 177 185 178 186 return reinterpret_cast<unsigned>(result);
Note:
See TracChangeset
for help on using the changeset viewer.