Changeset 121869 in webkit


Ignore:
Timestamp:
Jul 4, 2012 1:32:26 PM (12 years ago)
Author:
wingo@igalia.com
Message:

[GTK] Enable parallel GC
https://bugs.webkit.org/show_bug.cgi?id=90568

Reviewed by Martin Robinson.

Source/JavaScriptCore:

  • runtime/Options.cpp: Include <algorithm.h> for std::min.

Source/WTF:

  • wtf/Platform.h: Add GTK to the ENABLE_PARALLEL_GC party.
Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r121861 r121869  
     12012-07-04  Andy Wingo  <wingo@igalia.com>
     2
     3        [GTK] Enable parallel GC
     4        https://bugs.webkit.org/show_bug.cgi?id=90568
     5
     6        Reviewed by Martin Robinson.
     7
     8        * runtime/Options.cpp: Include <algorithm.h> for std::min.
     9
    1102012-07-04  John Mellor  <johnme@chromium.org>
    211
  • trunk/Source/JavaScriptCore/runtime/Options.cpp

    r121798 r121869  
    2727#include "Options.h"
    2828
     29#include <algorithm>
    2930#include <limits>
    3031#include <stdio.h>
  • trunk/Source/WTF/ChangeLog

    r121851 r121869  
     12012-07-04  Andy Wingo  <wingo@igalia.com>
     2
     3        [GTK] Enable parallel GC
     4        https://bugs.webkit.org/show_bug.cgi?id=90568
     5
     6        Reviewed by Martin Robinson.
     7
     8        * wtf/Platform.h: Add GTK to the ENABLE_PARALLEL_GC party.
     9
    1102012-07-04  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
    211
  • trunk/Source/WTF/wtf/Platform.h

    r121804 r121869  
    10761076#define ENABLE_OBJECT_MARK_LOGGING 0
    10771077
    1078 #if !defined(ENABLE_PARALLEL_GC) && !ENABLE(OBJECT_MARK_LOGGING) && (PLATFORM(MAC) || PLATFORM(IOS) || PLATFORM(QT) || PLATFORM(BLACKBERRY)) && ENABLE(COMPARE_AND_SWAP)
     1078#if !defined(ENABLE_PARALLEL_GC) && !ENABLE(OBJECT_MARK_LOGGING) && (PLATFORM(MAC) || PLATFORM(IOS) || PLATFORM(QT) || PLATFORM(BLACKBERRY) || PLATFORM(GTK)) && ENABLE(COMPARE_AND_SWAP)
    10791079#define ENABLE_PARALLEL_GC 1
    10801080#endif
Note: See TracChangeset for help on using the changeset viewer.