src/share/vm/gc_implementation/parallelScavenge/gcTaskManager.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/gc_implementation/parallelScavenge/gcTaskManager.cpp

src/share/vm/gc_implementation/parallelScavenge/gcTaskManager.cpp

Print this page
rev 5732 : [mq]: comments2

*** 200,215 **** this, list); print("before:"); list->print("list:"); } if (list->is_empty()) { ! // Enqueuing the empty list: nothing to do. return; } uint list_length = list->length(); if (is_empty()) { ! // Enqueuing to empty list: just acquire elements. set_insert_end(list->insert_end()); set_remove_end(list->remove_end()); set_length(list_length); } else { // Prepend argument list to our queue. --- 200,215 ---- this, list); print("before:"); list->print("list:"); } if (list->is_empty()) { ! // Enqueueing the empty list: nothing to do. return; } uint list_length = list->length(); if (is_empty()) { ! // Enqueueing to empty list: just acquire elements. set_insert_end(list->insert_end()); set_remove_end(list->remove_end()); set_length(list_length); } else { // Prepend argument list to our queue.
src/share/vm/gc_implementation/parallelScavenge/gcTaskManager.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File