Changeset 115580 in webkit for trunk/Source/JavaScriptCore
- Timestamp:
- Apr 28, 2012, 1:58:47 PM (13 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r115579 r115580 1 2012-04-28 Geoffrey Garen <[email protected]> 2 3 Try to fix the Windows build. 4 5 * JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def: 6 1 7 2012-04-28 Geoffrey Garen <[email protected]> 2 8 -
trunk/Source/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def
r115536 r115580 90 90 ?className@JSObject@JSC@@SA?AVUString@2@PBV12@@Z 91 91 ?clear@SourceProviderCache@JSC@@QAEXXZ 92 ?clearBuiltinStructures@JSGlobalData@JSC@@QAEXXZ93 92 ?clearRareData@JSGlobalObject@JSC@@CAXPAVJSCell@2@@Z 94 93 ?collate@Collator@WTF@@QBE?AW4Result@12@PB_WI0I@Z … … 147 146 ?despecifyDictionaryFunction@Structure@JSC@@QAEXAAVJSGlobalData@2@ABVIdentifier@2@@Z 148 147 ?despecifyFunctionTransition@Structure@JSC@@SAPAV12@AAVJSGlobalData@2@PAV12@ABVIdentifier@2@@Z 149 ?destroy@Heap@JSC@@QAEXXZ150 148 ?destroy@JSCell@JSC@@KAXPAV12@@Z 151 149 ?destroy@JSGlobalObject@JSC@@SAXPAVJSCell@2@@Z -
trunk/Source/JavaScriptCore/heap/Heap.cpp
r115579 r115580 367 367 // FIXME: Make this a release-mode crash once we're sure no one's doing this. 368 368 if (size_t size = m_protectedValues.size()) 369 LOG_ERROR("JavaScriptCore heap deallocated while %ld values were still protected", size);369 WTFLogAlways("ERROR: JavaScriptCore heap deallocated while %ld values were still protected", size); 370 370 371 371 m_weakSet.finalizeAll();
Note:
See TracChangeset
for help on using the changeset viewer.