Changeset 94871 in webkit


Ignore:
Timestamp:
Sep 9, 2011 12:44:54 PM (13 years ago)
Author:
ggaren@apple.com
Message:

2011-09-09 Geoffrey Garen <ggaren@apple.com>

Reviewed by Dan Bernstein.

Never #define ENABLE_SINGLE_THREADED, !ENABLE_JSC_MULTIPLE_THREADS, or
!ENABLE_WTF_MULTIPLE_THREADS
https://bugs.webkit.org/show_bug.cgi?id=67860

First step toward making the baseline platform assumption that threads
exist: Never #define ENABLE_SINGLE_THREADED, !ENABLE_JSC_MULTIPLE_THREADS,
or !ENABLE_WTF_MULTIPLE_THREADS.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r94866 r94871  
     12011-09-09  Geoffrey Garen  <ggaren@apple.com>
     2
     3        Reviewed by Dan Bernstein.
     4
     5        Never #define ENABLE_SINGLE_THREADED, !ENABLE_JSC_MULTIPLE_THREADS, or
     6        !ENABLE_WTF_MULTIPLE_THREADS
     7        https://bugs.webkit.org/show_bug.cgi?id=67860
     8
     9        First step toward making the baseline platform assumption that threads
     10        exist: Never #define ENABLE_SINGLE_THREADED, !ENABLE_JSC_MULTIPLE_THREADS,
     11        or !ENABLE_WTF_MULTIPLE_THREADS.
     12
     13        * wtf/Platform.h:
     14
    1152011-09-09  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
    216
  • trunk/Source/JavaScriptCore/wtf/Platform.h

    r94559 r94871  
    510510#endif
    511511
    512 #if (PLATFORM(GTK) || PLATFORM(IOS) || PLATFORM(MAC) || PLATFORM(WIN) || (PLATFORM(QT) && (OS(DARWIN) || USE(PTHREAD_BASED_QT)) && !ENABLE(SINGLE_THREADED))) && !OS(QNX) && !defined(ENABLE_JSC_MULTIPLE_THREADS)
    513512#define ENABLE_JSC_MULTIPLE_THREADS 1
    514 #endif
    515 
    516 #if ENABLE(JSC_MULTIPLE_THREADS) || PLATFORM(CHROMIUM)
    517513#define ENABLE_WTF_MULTIPLE_THREADS 1
    518 #endif
    519514
    520515/* On Windows, use QueryPerformanceCounter by default */
     
    580575
    581576#define WTF_USE_WK_SCROLLBAR_PAINTER 1
    582 #endif
    583 
    584 #if PLATFORM(BREWMP)
    585 #define ENABLE_SINGLE_THREADED 1
    586577#endif
    587578
Note: See TracChangeset for help on using the changeset viewer.