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

Changeset 187139 in webkit


Ignore:
Timestamp:
Jul 21, 2015, 5:01:46 PM (11 years ago)
Author:
fpizlo@apple.com
Message:

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

  • jsc.cpp:

(main):

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r187125 r187139  
     12015-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
    182015-07-21  Filip Pizlo  <fpizlo@apple.com>
    29
  • 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.