Changeset 150751 in webkit


Ignore:
Timestamp:
May 27, 2013 6:00:14 AM (11 years ago)
Author:
kadam@inf.u-szeged.hu
Message:

[Qt] Enable parallel GC. Probably it has been fixed in r131791.
https://bugs.webkit.org/show_bug.cgi?id=90957

Reviewed by Csaba Osztrogonác.

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

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r150729 r150751  
     12013-05-27  Ádám Kallai  <kadam@inf.u-szeged.hu>
     2
     3        [Qt] Enable parallel GC. Probably it has been fixed in r131791.
     4        https://bugs.webkit.org/show_bug.cgi?id=90957
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        * wtf/Platform.h:
     9
    1102013-05-26  Patrick Gansterer  <paroga@webkit.org>
    211
  • trunk/Source/WTF/wtf/Platform.h

    r150651 r150751  
    941941#define ENABLE_OBJECT_MARK_LOGGING 0
    942942
    943 #if !defined(ENABLE_PARALLEL_GC) && !ENABLE(OBJECT_MARK_LOGGING) && (PLATFORM(MAC) || PLATFORM(IOS) || PLATFORM(BLACKBERRY) || PLATFORM(GTK)) && ENABLE(COMPARE_AND_SWAP)
     943#if !defined(ENABLE_PARALLEL_GC) && !ENABLE(OBJECT_MARK_LOGGING) && (PLATFORM(MAC) || PLATFORM(IOS) || PLATFORM(QT) || PLATFORM(BLACKBERRY) || PLATFORM(GTK)) && ENABLE(COMPARE_AND_SWAP)
    944944#define ENABLE_PARALLEL_GC 1
    945 #elif PLATFORM(QT)
    946 // Parallel GC is temporarily disabled on Qt because of regular crashes, see https://bugs.webkit.org/show_bug.cgi?id=90957 for details
    947 #define ENABLE_PARALLEL_GC 0
    948945#endif
    949946
Note: See TracChangeset for help on using the changeset viewer.