Changeset 187139 in webkit
- Timestamp:
- Jul 21, 2015, 5:01:46 PM (11 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r187125 r187139 1 2015-07-21 Filip Pizlo <fpizlo@apple.com> 2 3 Unreviewed, fix a lot of tests. Need to initialize WTF threading sooner. 4 5 * jsc.cpp: 6 (main): 7 1 8 2015-07-21 Filip Pizlo <fpizlo@apple.com> 2 9 -
trunk/Source/JavaScriptCore/jsc.cpp
r187125 r187139 1249 1249 #endif 1250 1250 1251 // Need to initialize WTF threading before we start any threads. Cannot initialize JSC 1252 // threading yet, since that would do somethings that we'd like to defer until after we 1253 // have a chance to parse options. 1254 WTF::initializeThreading(); 1255 1251 1256 if (char* timeoutString = getenv("JSC_timeout")) { 1252 1257 if (sscanf(timeoutString, "%lf", &s_desiredTimeout) != 1) {
Note:
See TracChangeset
for help on using the changeset viewer.