< prev index next >

src/share/vm/gc_implementation/shenandoah/shenandoahCollectorPolicy.cpp

Print this page
rev 9436 : Import from Shenandoah tag aarch64-shenandoah-jdk8u121-b14-shenandoah-merge-2017-03-23

*** 45,55 **** } RegionGarbage; static int compare_by_garbage(RegionGarbage a, RegionGarbage b) { if (a.garbage > b.garbage) return -1; ! else if (b.garbage < a.garbage) return 1; else return 0; } RegionGarbage* get_region_garbage_cache(size_t num) { --- 45,55 ---- } RegionGarbage; static int compare_by_garbage(RegionGarbage a, RegionGarbage b) { if (a.garbage > b.garbage) return -1; ! else if (a.garbage < b.garbage) return 1; else return 0; } RegionGarbage* get_region_garbage_cache(size_t num) {
< prev index next >