Changeset 187308 in webkit
- Timestamp:
- Jul 24, 2015, 12:54:00 AM (11 years ago)
- Location:
- branches/safari-601.1-branch/Source/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/safari-601.1-branch/Source/JavaScriptCore/ChangeLog
r187302 r187308 1 2015-07-24 Matthew Hanson <matthew_hanson@apple.com> 2 3 Merge r187139. rdar://problem/21847618 4 5 2015-07-21 Filip Pizlo <fpizlo@apple.com> 6 7 Unreviewed, fix a lot of tests. Need to initialize WTF threading sooner. 8 9 * jsc.cpp: 10 (main): 11 1 12 2015-07-23 Lucas Forschler <lforschler@apple.com> 2 13 -
branches/safari-601.1-branch/Source/JavaScriptCore/jsc.cpp
r187301 r187308 1248 1248 #endif 1249 1249 1250 // Need to initialize WTF threading before we start any threads. Cannot initialize JSC 1251 // threading yet, since that would do somethings that we'd like to defer until after we 1252 // have a chance to parse options. 1253 WTF::initializeThreading(); 1254 1250 1255 if (char* timeoutString = getenv("JSC_timeout")) { 1251 1256 if (sscanf(timeoutString, "%lf", &s_desiredTimeout) != 1) {
Note:
See TracChangeset
for help on using the changeset viewer.