Changeset 54457 in webkit


Ignore:
Timestamp:
Feb 5, 2010 6:28:06 PM (14 years ago)
Author:
eric@webkit.org
Message:

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

Reviewed by Eric Seidel.

[BREWMP] Define SYSTEM_MALLOC 1
https://bugs.webkit.org/show_bug.cgi?id=34640

Make BREWMP use system malloc because FastMalloc is not ported.

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

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r54428 r54457  
     12010-02-05  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [BREWMP] Define SYSTEM_MALLOC 1
     6        https://bugs.webkit.org/show_bug.cgi?id=34640
     7
     8        Make BREWMP use system malloc because FastMalloc is not ported.
     9
     10        * wtf/Platform.h:
     11
    1122010-02-05  Kwang Yul Seo  <skyul@company100.net>
    213
  • trunk/JavaScriptCore/wtf/Platform.h

    r54320 r54457  
    627627#endif
    628628
     629#if PLATFORM(BREWMP)
     630#define USE_SYSTEM_MALLOC 1
     631#endif
     632
    629633#if !defined(HAVE_ACCESSIBILITY)
    630634#if PLATFORM(IPHONE) || PLATFORM(MAC) || PLATFORM(WIN) || PLATFORM(GTK) || PLATFORM(CHROMIUM)
Note: See TracChangeset for help on using the changeset viewer.