Title: [181436] trunk/Source/WTF
Revision
181436
Author
[email protected]
Date
2015-03-12 07:50:21 -0700 (Thu, 12 Mar 2015)

Log Message

[ARM][Linux] GC sometimes stuck in an infinite loop if parallel GC is enabled
https://bugs.webkit.org/show_bug.cgi?id=141290

Reviewed by Carlos Garcia Campos.

* wtf/Platform.h: Enable parallel GC after r181319.

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (181435 => 181436)


--- trunk/Source/WTF/ChangeLog	2015-03-12 10:27:45 UTC (rev 181435)
+++ trunk/Source/WTF/ChangeLog	2015-03-12 14:50:21 UTC (rev 181436)
@@ -1,3 +1,12 @@
+2015-03-12  Csaba Osztrogonác  <[email protected]>
+
+        [ARM][Linux] GC sometimes stuck in an infinite loop if parallel GC is enabled
+        https://bugs.webkit.org/show_bug.cgi?id=141290
+
+        Reviewed by Carlos Garcia Campos.
+
+        * wtf/Platform.h: Enable parallel GC after r181319.
+
 2015-03-11  Myles C. Maxfield  <[email protected]>
 
         Use out-of-band messaging for RenderBox::firstLineBaseline() and RenderBox::inlineBlockBaseline()

Modified: trunk/Source/WTF/wtf/Platform.h (181435 => 181436)


--- trunk/Source/WTF/wtf/Platform.h	2015-03-12 10:27:45 UTC (rev 181435)
+++ trunk/Source/WTF/wtf/Platform.h	2015-03-12 14:50:21 UTC (rev 181436)
@@ -961,12 +961,6 @@
 #define ENABLE_COMPARE_AND_SWAP 1
 #endif
 
-/* [ARM] GC sometimes stuck in an infinite loop if parallel GC is enabled
- FIXME: Enable it once #141290 is fixed. */
-#if !defined(ENABLE_PARALLEL_GC) && OS(LINUX) && CPU(ARM_THUMB2)
-#define ENABLE_PARALLEL_GC 0
-#endif
-
 #if !defined(ENABLE_PARALLEL_GC) && (OS(DARWIN) || PLATFORM(EFL) || PLATFORM(GTK)) && ENABLE(COMPARE_AND_SWAP)
 #define ENABLE_PARALLEL_GC 1
 #endif
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to