Changeset 61969 in webkit


Ignore:
Timestamp:
Jun 27, 2010 9:36:38 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-06-27 Kwang Yul Seo <skyul@company100.net>

Reviewed by Kent Tamura.

[BREWMP] Turn ENABLE(SINGLE_THREADED) on.
https://bugs.webkit.org/show_bug.cgi?id=41135

Brew MP does not support preemptive multi-threading.
Disable threading for Brew MP.

  • wtf/Platform.h:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r61950 r61969  
     12010-06-27  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Reviewed by Kent Tamura.
     4
     5        [BREWMP] Turn ENABLE(SINGLE_THREADED) on.
     6        https://bugs.webkit.org/show_bug.cgi?id=41135
     7
     8        Brew MP does not support preemptive multi-threading.
     9        Disable threading for Brew MP.
     10
     11        * wtf/Platform.h:
     12
    1132010-06-26  Tony Gentilcore  <tonyg@chromium.org>
    214
  • trunk/JavaScriptCore/wtf/Platform.h

    r61878 r61969  
    616616#endif
    617617
     618#if PLATFORM(BREWMP)
     619#define ENABLE_SINGLE_THREADED 1
     620#endif
     621
    618622#if PLATFORM(QT) && OS(DARWIN)
    619623#define WTF_PLATFORM_CF 1
Note: See TracChangeset for help on using the changeset viewer.