Changeset 173540 in webkit


Ignore:
Timestamp:
Sep 11, 2014 2:45:45 PM (10 years ago)
Author:
ggaren@apple.com
Message:

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

Reviewed by Michael Saboff.

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

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

    r173346 r173540  
    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.