Ignore:
Timestamp:
Feb 16, 2009, 2:23:03 PM (16 years ago)
Author:
[email protected]
Message:

Build fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/FastMalloc.cpp

    r40404 r41023  
    38043804extern "C" {
    38053805malloc_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    };
    38073813}
    38083814
     
    38133819{
    38143820    memset(&m_zone, 0, sizeof(m_zone));
     3821    m_zone.version = 4;
    38153822    m_zone.zone_name = "JavaScriptCore FastMalloc";
    38163823    m_zone.size = &FastMallocZone::size;
Note: See TracChangeset for help on using the changeset viewer.