Changeset 38848 in webkit for trunk/JavaScriptCore
- Timestamp:
- Nov 29, 2008, 4:39:57 PM (16 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r38844 r38848 1 2008-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 1 8 2008-11-29 Antti Koivisto <[email protected]> 2 9 -
trunk/JavaScriptCore/wtf/FastMalloc.cpp
r38844 r38848 233 233 234 234 void releaseFastMallocFreeMemory() { } 235 236 FastMallocStatistics fastMallocStatistics() 237 { 238 FastMallocStatistics statistics; 239 statistics.heapSize = 0; 240 statistics.freeSize = 0; 241 statistics.returnedSize = 0; 242 return statistics; 243 } 235 244 236 245 #if HAVE(VIRTUALALLOC)
Note:
See TracChangeset
for help on using the changeset viewer.