Changeset 38673 in webkit for trunk/JavaScriptCore/runtime/Collector.cpp
- Timestamp:
- Nov 21, 2008, 1:20:41 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Collector.cpp
r38672 r38673 284 284 ASSERT(heapType == PrimaryHeap || heap.extraCost == 0); 285 285 // FIXME: If another global variable access here doesn't hurt performance 286 // too much, we could abort() in NDEBUG builds, which could help ensure we286 // too much, we could CRASH() in NDEBUG builds, which could help ensure we 287 287 // don't spend any time debugging cases where we allocate inside an object's 288 288 // deallocation code. … … 975 975 ASSERT((primaryHeap.operationInProgress == NoOperation) | (numberHeap.operationInProgress == NoOperation)); 976 976 if ((primaryHeap.operationInProgress != NoOperation) | (numberHeap.operationInProgress != NoOperation)) 977 abort();977 CRASH(); 978 978 979 979 JAVASCRIPTCORE_GC_BEGIN();
Note:
See TracChangeset
for help on using the changeset viewer.