Changeset 55091 in webkit


Ignore:
Timestamp:
Feb 22, 2010 11:02:50 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-02-22 Kwang Yul Seo <skyul@company100.net>

Reviewed by Eric Seidel.

[BREWMP] Map FastMalloc to BREW memory allocator
https://bugs.webkit.org/show_bug.cgi?id=33570

Use MALLOC macro instead of the standard malloc function.
Although RVCT provides malloc, we can't use it in BREW
because the loader does not initialize the base address properly.

  • wtf/FastMalloc.cpp:
  • wtf/brew/SystemMallocBrew.h: Added. (mallocBrew): (callocBrew): (freeBrew): (reallocBrew):
Location:
trunk/JavaScriptCore
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r55088 r55091  
     12010-02-22  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [BREWMP] Map FastMalloc to BREW memory allocator
     6        https://bugs.webkit.org/show_bug.cgi?id=33570
     7
     8        Use MALLOC macro instead of the standard malloc function.
     9        Although RVCT provides malloc, we can't use it in BREW
     10        because the loader does not initialize the base address properly.
     11
     12        * wtf/FastMalloc.cpp:
     13        * wtf/brew/SystemMallocBrew.h: Added.
     14        (mallocBrew):
     15        (callocBrew):
     16        (freeBrew):
     17        (reallocBrew):
     18
    1192010-02-22  Gustavo Noronha Silva  <gustavo.noronha@collabora.co.uk>
    220
  • trunk/JavaScriptCore/wtf/FastMalloc.cpp

    r54988 r55091  
    205205#if FORCE_SYSTEM_MALLOC
    206206
     207#if PLATFORM(BREWMP)
     208#include "brew/SystemMallocBrew.h"
     209#endif
     210
    207211namespace WTF {
    208212
Note: See TracChangeset for help on using the changeset viewer.