Changeset 180093 in webkit


Ignore:
Timestamp:
Feb 13, 2015 5:20:57 PM (9 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

[EFL] Enable bmalloc for EFL port
https://bugs.webkit.org/show_bug.cgi?id=141459

Reviewed by Csaba Osztrogonác.

  • wtf/CMakeLists.txt: Remove TCSystemAlloc.cpp/h.
  • wtf/FastMalloc.cpp: Enable BMALLOC for EFL port.
Location:
trunk/Source/WTF
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r180066 r180093  
     12015-02-13  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        [EFL] Enable bmalloc for EFL port
     4        https://bugs.webkit.org/show_bug.cgi?id=141459
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        * wtf/CMakeLists.txt: Remove TCSystemAlloc.cpp/h.
     9        * wtf/FastMalloc.cpp: Enable BMALLOC for EFL port.
     10
    1112015-02-13  Anders Carlsson  <andersca@apple.com>
    212
  • trunk/Source/WTF/wtf/CMakeLists.txt

    r179923 r180093  
    101101    TCPageMap.h
    102102    TCSpinLock.h
    103     TCSystemAlloc.h
    104103    ThreadIdentifierDataPthreads.h
    105104    ThreadSafeRefCounted.h
     
    184183    StackBounds.cpp
    185184    StringPrintStream.cpp
    186     TCSystemAlloc.cpp
    187185    Threading.cpp
    188186    WTFThreadData.cpp
  • trunk/Source/WTF/wtf/FastMalloc.cpp

    r179923 r180093  
    101101#endif
    102102
    103 #if PLATFORM(COCOA) || PLATFORM(GTK)
     103#if PLATFORM(COCOA) || PLATFORM(GTK) || PLATFORM(EFL)
    104104#define USE_BMALLOC 1
    105105#endif
Note: See TracChangeset for help on using the changeset viewer.