index

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

Print this page
rev 7474 : imported patch cleanup

*** 258,268 **** HeapWord* result = young_gen()->allocate(size); uint loop_count = 0; uint gc_count = 0; ! int gclocker_stalled_count = 0; while (result == NULL) { // We don't want to have multiple collections for a single filled generation. // To prevent this, each thread tracks the total_collections() value, and if // the count has changed, does not do a new collection. --- 258,268 ---- HeapWord* result = young_gen()->allocate(size); uint loop_count = 0; uint gc_count = 0; ! uint gclocker_stalled_count = 0; while (result == NULL) { // We don't want to have multiple collections for a single filled generation. // To prevent this, each thread tracks the total_collections() value, and if // the count has changed, does not do a new collection.
index