Ignore:
Timestamp:
Jul 21, 2015, 5:01:46 PM (10 years ago)
Author:
[email protected]
Message:

Unreviewed, fix a lot of tests. Need to initialize WTF threading sooner.

  • jsc.cpp:

(main):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/jsc.cpp

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