Changeset 173935 in webkit


Ignore:
Timestamp:
Sep 24, 2014 3:07:41 PM (10 years ago)
Author:
ggaren@apple.com
Message:

Do the bmalloc.
https://bugs.webkit.org/show_bug.cgi?id=132629

Reviewed by Gavin Barraclough.

64-bit only for now, just to try it out.

  • wtf/FastMalloc.cpp:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r173909 r173935  
     12014-09-24  Geoffrey Garen  <ggaren@apple.com>
     2
     3        Do the bmalloc.
     4        https://bugs.webkit.org/show_bug.cgi?id=132629
     5
     6        Reviewed by Gavin Barraclough.
     7
     8        64-bit only for now, just to try it out.
     9
     10        * wtf/FastMalloc.cpp:
     11
    1122014-09-23  Geoffrey Garen  <ggaren@apple.com>
    213
  • trunk/Source/WTF/wtf/FastMalloc.cpp

    r173909 r173935  
    102102#endif
    103103
     104#if (PLATFORM(COCOA) && (CPU(X86_64) || CPU(ARM64)))
     105#define USE_BMALLOC 1
     106#endif
     107
    104108#if !(defined(USE_SYSTEM_MALLOC) && USE_SYSTEM_MALLOC) && defined(NDEBUG)
    105109#define FORCE_SYSTEM_MALLOC 0
Note: See TracChangeset for help on using the changeset viewer.