Changeset 38848 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Nov 29, 2008, 4:39:57 PM (16 years ago)
Author:
Antti Koivisto
Message:

2008-11-29 Antti Koivisto <Antti Koivisto>

Fix debug build by adding a stub method.

  • wtf/FastMalloc.cpp: (WTF::fastMallocStatistics):
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r38844 r38848  
     12008-11-29  Antti Koivisto  <[email protected]>
     2
     3        Fix debug build by adding a stub method.
     4
     5        * wtf/FastMalloc.cpp:
     6        (WTF::fastMallocStatistics):
     7
    182008-11-29  Antti Koivisto  <[email protected]>
    29
  • trunk/JavaScriptCore/wtf/FastMalloc.cpp

    r38844 r38848  
    233233
    234234void releaseFastMallocFreeMemory() { }
     235   
     236FastMallocStatistics fastMallocStatistics()
     237{
     238    FastMallocStatistics statistics;
     239    statistics.heapSize = 0;
     240    statistics.freeSize = 0;
     241    statistics.returnedSize = 0;
     242    return statistics;
     243}
    235244
    236245#if HAVE(VIRTUALALLOC)
Note: See TracChangeset for help on using the changeset viewer.