Title: [121869] trunk/Source
Revision
121869
Author
[email protected]
Date
2012-07-04 13:32:26 -0700 (Wed, 04 Jul 2012)

Log Message

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

Reviewed by Martin Robinson.

Source/_javascript_Core:

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

Source/WTF:

* wtf/Platform.h: Add GTK to the ENABLE_PARALLEL_GC party.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (121868 => 121869)


--- trunk/Source/_javascript_Core/ChangeLog	2012-07-04 19:23:21 UTC (rev 121868)
+++ trunk/Source/_javascript_Core/ChangeLog	2012-07-04 20:32:26 UTC (rev 121869)
@@ -1,3 +1,12 @@
+2012-07-04  Andy Wingo  <[email protected]>
+
+        [GTK] Enable parallel GC
+        https://bugs.webkit.org/show_bug.cgi?id=90568
+
+        Reviewed by Martin Robinson.
+
+        * runtime/Options.cpp: Include <algorithm.h> for std::min.
+
 2012-07-04  John Mellor  <[email protected]>
 
         Text Autosizing: Add compile flag and runtime setting

Modified: trunk/Source/_javascript_Core/runtime/Options.cpp (121868 => 121869)


--- trunk/Source/_javascript_Core/runtime/Options.cpp	2012-07-04 19:23:21 UTC (rev 121868)
+++ trunk/Source/_javascript_Core/runtime/Options.cpp	2012-07-04 20:32:26 UTC (rev 121869)
@@ -26,6 +26,7 @@
 #include "config.h"
 #include "Options.h"
 
+#include <algorithm>
 #include <limits>
 #include <stdio.h>
 #include <stdlib.h>

Modified: trunk/Source/WTF/ChangeLog (121868 => 121869)


--- trunk/Source/WTF/ChangeLog	2012-07-04 19:23:21 UTC (rev 121868)
+++ trunk/Source/WTF/ChangeLog	2012-07-04 20:32:26 UTC (rev 121869)
@@ -1,3 +1,12 @@
+2012-07-04  Andy Wingo  <[email protected]>
+
+        [GTK] Enable parallel GC
+        https://bugs.webkit.org/show_bug.cgi?id=90568
+
+        Reviewed by Martin Robinson.
+
+        * wtf/Platform.h: Add GTK to the ENABLE_PARALLEL_GC party.
+
 2012-07-04  Tor Arne Vestbø  <[email protected]>
 
         [Qt] Get rid of un-needed QT += declarative for Qt 5

Modified: trunk/Source/WTF/wtf/Platform.h (121868 => 121869)


--- trunk/Source/WTF/wtf/Platform.h	2012-07-04 19:23:21 UTC (rev 121868)
+++ trunk/Source/WTF/wtf/Platform.h	2012-07-04 20:32:26 UTC (rev 121869)
@@ -1075,7 +1075,7 @@
 
 #define ENABLE_OBJECT_MARK_LOGGING 0
 
-#if !defined(ENABLE_PARALLEL_GC) && !ENABLE(OBJECT_MARK_LOGGING) && (PLATFORM(MAC) || PLATFORM(IOS) || PLATFORM(QT) || PLATFORM(BLACKBERRY)) && ENABLE(COMPARE_AND_SWAP)
+#if !defined(ENABLE_PARALLEL_GC) && !ENABLE(OBJECT_MARK_LOGGING) && (PLATFORM(MAC) || PLATFORM(IOS) || PLATFORM(QT) || PLATFORM(BLACKBERRY) || PLATFORM(GTK)) && ENABLE(COMPARE_AND_SWAP)
 #define ENABLE_PARALLEL_GC 1
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to