8129961: SIGSEGV when copying to survivor space

Remove "include_young" parameter from GenCollectedHeap::no_allocs_since_save_marks() since all existing uses pass true to always rescan young gen.

Reviewed-by: jmasa, kbarrett
This commit is contained in:
Eric Caspole 2015-07-13 11:49:23 -04:00
parent ef59ce7332
commit 34bcc977bc
4 changed files with 9 additions and 11 deletions

View file

@ -848,7 +848,7 @@ void EvacuateFollowersClosureGeneral::do_void() {
_gch->oop_since_save_marks_iterate(GenCollectedHeap::YoungGen,
_scan_cur_or_nonheap,
_scan_older);
} while (!_gch->no_allocs_since_save_marks(true /* include_young */));
} while (!_gch->no_allocs_since_save_marks());
}