Changeset 52047 in webkit for trunk/JavaScriptCore/API


Ignore:
Timestamp:
Dec 11, 2009, 11:20:27 PM (16 years ago)
Author:
[email protected]
Message:

Rolled out my last patch because the bots were crashing

Location:
trunk/JavaScriptCore/API
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/API/JSBase.cpp

    r52040 r52047  
    100100
    101101    if (!globalData.heap.isBusy())
    102         globalData.heap.collectAllGarbage();
     102        globalData.heap.collect();
    103103
    104104    // FIXME: Perhaps we should trigger a second mark and sweep
  • trunk/JavaScriptCore/API/JSContextRef.cpp

    r52040 r52047  
    134134        globalData.heap.destroy();
    135135    } else
    136         globalData.heap.collectAllGarbage();
     136        globalData.heap.collect();
    137137
    138138    globalData.deref();
Note: See TracChangeset for help on using the changeset viewer.