Changeset 96432 in webkit for trunk/Source/JavaScriptCore/heap/AllocationSpace.cpp
- Timestamp:
- Sep 30, 2011, 3:23:33 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/heap/AllocationSpace.cpp
r96372 r96432 56 56 AllocationEffort allocationEffort; 57 57 58 if (m_markedSpace.waterMark() < m_markedSpace.highWaterMark() || !m_heap->m_isSafeToCollect) 58 if (( 59 #if ENABLE(GGC) 60 m_markedSpace.nurseryWaterMark() < m_heap->m_minBytesPerCycle 61 #else 62 m_markedSpace.waterMark() < m_markedSpace.highWaterMark() 63 #endif 64 ) || !m_heap->m_isSafeToCollect) 59 65 allocationEffort = AllocationMustSucceed; 60 66 else
Note:
See TracChangeset
for help on using the changeset viewer.