Changeset 67683 in webkit for trunk/JavaScriptCore/runtime/Collector.cpp
- Timestamp:
- Sep 16, 2010, 6:18:30 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Collector.cpp
r64849 r67683 44 44 #include <wtf/FastMalloc.h> 45 45 #include <wtf/HashCountedSet.h> 46 #include <wtf/WTFThreadData.h> 46 47 #include <wtf/UnusedParam.h> 47 48 #include <wtf/VMTags.h> … … 299 300 void* Heap::allocate(size_t s) 300 301 { 302 ASSERT(globalData()->identifierTable == wtfThreadData().currentIdentifierTable()); 301 303 typedef HeapConstants::Block Block; 302 304 typedef HeapConstants::Cell Cell; … … 1190 1192 void Heap::reset() 1191 1193 { 1194 ASSERT(globalData()->identifierTable == wtfThreadData().currentIdentifierTable()); 1192 1195 JAVASCRIPTCORE_GC_BEGIN(); 1193 1196 … … 1212 1215 void Heap::collectAllGarbage() 1213 1216 { 1217 ASSERT(globalData()->identifierTable == wtfThreadData().currentIdentifierTable()); 1214 1218 JAVASCRIPTCORE_GC_BEGIN(); 1215 1219
Note:
See TracChangeset
for help on using the changeset viewer.