⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 187308 in webkit


Ignore:
Timestamp:
Jul 24, 2015, 12:54:00 AM (11 years ago)
Author:
matthew_hanson@apple.com
Message:

Merge r187139. rdar://problem/21847618

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  
     12015-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
    1122015-07-23  Lucas Forschler  <lforschler@apple.com>
    213
  • branches/safari-601.1-branch/Source/JavaScriptCore/jsc.cpp

    r187301 r187308  
    12481248#endif
    12491249
     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
    12501255    if (char* timeoutString = getenv("JSC_timeout")) {
    12511256        if (sscanf(timeoutString, "%lf", &s_desiredTimeout) != 1) {
Note: See TracChangeset for help on using the changeset viewer.