8026784: Error message in AdaptiveFreeList<Chunk>::verify_stats is wrong

Mon, 21 Jul 2014 09:40:19 +0200

author
tschatzl
date
Mon, 21 Jul 2014 09:40:19 +0200
changeset 6933
f40816c5e359
parent 6932
828056cf311f
child 6934
d15367d92f0d

8026784: Error message in AdaptiveFreeList<Chunk>::verify_stats is wrong
Summary: Changed faulty error message in the verification code
Reviewed-by: stefank, tschatzl
Contributed-by: Andreas Sjoberg <andreas.sjoberg@oracle.com>

src/share/vm/gc_implementation/concurrentMarkSweep/adaptiveFreeList.cpp file | annotate | diff | comparison | revisions
     1.1 --- a/src/share/vm/gc_implementation/concurrentMarkSweep/adaptiveFreeList.cpp	Mon Jul 21 09:40:19 2014 +0200
     1.2 +++ b/src/share/vm/gc_implementation/concurrentMarkSweep/adaptiveFreeList.cpp	Mon Jul 21 09:40:19 2014 +0200
     1.3 @@ -158,7 +158,7 @@
     1.4                   " coal_deaths(" SIZE_FORMAT ")"
     1.5                   " + count(" SSIZE_FORMAT ")",
     1.6                   p2i(this), size(), _allocation_stats.prev_sweep(), _allocation_stats.split_births(),
     1.7 -                 _allocation_stats.split_births(), _allocation_stats.split_deaths(),
     1.8 +                 _allocation_stats.coal_births(), _allocation_stats.split_deaths(),
     1.9                   _allocation_stats.coal_deaths(), count()));
    1.10  }
    1.11  #endif

mercurial