Title: [123590] trunk/Source/WTF
Revision
123590
Author
o...@webkit.org
Date
2012-07-25 02:00:39 -0700 (Wed, 25 Jul 2012)

Log Message

[Qt] There are parallel GC related crashes regularly
https://bugs.webkit.org/show_bug.cgi?id=90957

Rubber-stamped by Zoltan Herczeg.

* wtf/Platform.h: Disable parallel GC temporarily on Qt until proper fix.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (123589 => 123590)


--- trunk/Source/WTF/ChangeLog	2012-07-25 08:42:44 UTC (rev 123589)
+++ trunk/Source/WTF/ChangeLog	2012-07-25 09:00:39 UTC (rev 123590)
@@ -1,3 +1,12 @@
+2012-07-25  Csaba Osztrogonác  <o...@webkit.org>
+
+        [Qt] There are parallel GC related crashes regularly
+        https://bugs.webkit.org/show_bug.cgi?id=90957
+
+        Rubber-stamped by Zoltan Herczeg.
+
+        * wtf/Platform.h: Disable parallel GC temporarily on Qt until proper fix.
+
 2012-07-24  Benjamin Poulain  <bpoul...@apple.com> && Joseph Pecoraro  <pecor...@apple.com>
 
         QualifiedName's HashSet should be big enough to hold at least all the static names

Modified: trunk/Source/WTF/wtf/Platform.h (123589 => 123590)


--- trunk/Source/WTF/wtf/Platform.h	2012-07-25 08:42:44 UTC (rev 123589)
+++ trunk/Source/WTF/wtf/Platform.h	2012-07-25 09:00:39 UTC (rev 123590)
@@ -1086,8 +1086,11 @@
 
 #define ENABLE_OBJECT_MARK_LOGGING 0
 
-#if !defined(ENABLE_PARALLEL_GC) && !ENABLE(OBJECT_MARK_LOGGING) && (PLATFORM(MAC) || PLATFORM(IOS) || PLATFORM(QT) || PLATFORM(BLACKBERRY) || PLATFORM(GTK)) && ENABLE(COMPARE_AND_SWAP)
+#if !defined(ENABLE_PARALLEL_GC) && !ENABLE(OBJECT_MARK_LOGGING) && (PLATFORM(MAC) || PLATFORM(IOS) || PLATFORM(BLACKBERRY) || PLATFORM(GTK)) && ENABLE(COMPARE_AND_SWAP)
 #define ENABLE_PARALLEL_GC 1
+#elif PLATFORM(QT)
+// Parallel GC is temporarily disabled on Qt because of regular crashes, see https://bugs.webkit.org/show_bug.cgi?id=90957 for details
+#define ENABLE_PARALLEL_GC 0
 #endif
 
 #if !defined(ENABLE_GC_VALIDATION) && !defined(NDEBUG)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to