Changeset 41023 in webkit for trunk/JavaScriptCore/wtf/FastMalloc.cpp
- Timestamp:
- Feb 16, 2009, 2:23:03 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/wtf/FastMalloc.cpp
r40404 r41023 3804 3804 extern "C" { 3805 3805 malloc_introspection_t jscore_fastmalloc_introspection = { &FastMallocZone::enumerate, &FastMallocZone::goodSize, &FastMallocZone::check, &FastMallocZone::print, 3806 &FastMallocZone::log, &FastMallocZone::forceLock, &FastMallocZone::forceUnlock, &FastMallocZone::statistics }; 3806 &FastMallocZone::log, &FastMallocZone::forceLock, &FastMallocZone::forceUnlock, &FastMallocZone::statistics 3807 3808 #if !defined(BUILDING_ON_TIGER) && !defined(BUILDING_ON_LEOPARD) 3809 , 0 // zone_locked will not be called on the zone unless it advertises itself as version five or higher. 3810 #endif 3811 3812 }; 3807 3813 } 3808 3814 … … 3813 3819 { 3814 3820 memset(&m_zone, 0, sizeof(m_zone)); 3821 m_zone.version = 4; 3815 3822 m_zone.zone_name = "JavaScriptCore FastMalloc"; 3816 3823 m_zone.size = &FastMallocZone::size;
Note:
See TracChangeset
for help on using the changeset viewer.