Changeset 39600 in webkit for trunk/JavaScriptCore/runtime/Collector.cpp
- Timestamp:
- Jan 5, 2009, 9:21:13 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Collector.cpp
r38849 r39600 162 162 #if ENABLE(JSC_MULTIPLE_THREADS) 163 163 if (m_currentThreadRegistrar) { 164 #ifndef NDEBUG 165 int error = 166 #endif 167 pthread_key_delete(m_currentThreadRegistrar); 168 ASSERT(!error); 164 int error = pthread_key_delete(m_currentThreadRegistrar); 165 ASSERT_UNUSED(error, !error); 169 166 } 170 167 … … 278 275 ASSERT(JSLock::lockCount() > 0); 279 276 ASSERT(JSLock::currentThreadIsHoldingLock()); 280 ASSERT(s <= HeapConstants<heapType>::cellSize); 281 UNUSED_PARAM(s); // s is now only used for the above assert 277 ASSERT_UNUSED(s, s <= HeapConstants<heapType>::cellSize); 282 278 283 279 ASSERT(heap.operationInProgress == NoOperation);
Note:
See TracChangeset
for help on using the changeset viewer.