Changeset 91906 in webkit for trunk/Source/JavaScriptCore/wtf/ThreadingWin.cpp
- Timestamp:
- Jul 27, 2011, 10:16:23 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/wtf/ThreadingWin.cpp
r91383 r91906 86 86 #include "config.h" 87 87 #include "Threading.h" 88 #include "DateMath.h" 89 #include "dtoa.h" 88 90 89 91 #include "MainThread.h" … … 96 98 #include <wtf/PassOwnPtr.h> 97 99 #include <wtf/RandomNumberSeed.h> 100 #include <wtf/WTFThreadData.h> 98 101 99 102 #if !USE(PTHREADS) && OS(WINDOWS) … … 161 164 return; 162 165 166 // StringImpl::empty() does not construct its static string in a threadsafe fashion, 167 // so ensure it has been initialized from here. 168 StringImpl::empty(); 163 169 atomicallyInitializedStaticMutex = new Mutex; 164 170 threadMapMutex(); 165 171 initializeRandomNumberGenerator(); 172 wtfThreadData(); 173 #if ENABLE(WTF_MULTIPLE_THREADS) 174 s_dtoaP5Mutex = new Mutex; 175 initializeDates(); 176 #endif 177 166 178 } 167 179
Note:
See TracChangeset
for help on using the changeset viewer.