< prev index next >

src/share/vm/runtime/jniHandles.cpp

Print this page
rev 13288 : [mq]: reviews

*** 445,455 **** assert(current->_free_list == NULL, "only first block should have _free_list set"); if (current->_top == 0) { // All blocks after the first clear trailing block are already cleared. #ifdef ASSERT ! for ( ; current != NULL; current = current->_next) { assert(current->_top == 0, "trailing blocks must already be cleared"); } #endif break; } --- 445,455 ---- assert(current->_free_list == NULL, "only first block should have _free_list set"); if (current->_top == 0) { // All blocks after the first clear trailing block are already cleared. #ifdef ASSERT ! for (current = current->_next; current != NULL; current = current->_next) { assert(current->_top == 0, "trailing blocks must already be cleared"); } #endif break; }
< prev index next >