diff src/share/vm/memory/binaryTreeDictionary.cpp @ 7947:3c327c2b6782

8004895: NPG: JMapPermCore test failure caused by warnings about missing field Reviewed-by: johnc
author jmasa
date Thu, 03 Jan 2013 15:03:27 -0800
parents e51c9860cf66
children 3c9bc17b9403
line wrap: on
line diff
--- a/src/share/vm/memory/binaryTreeDictionary.cpp	Tue Jan 22 13:42:39 2013 +0100
+++ b/src/share/vm/memory/binaryTreeDictionary.cpp	Thu Jan 03 15:03:27 2013 -0800
@@ -873,7 +873,7 @@
 
 #ifndef SERIALGC
 template <>
-void BinaryTreeDictionary<FreeChunk, AdaptiveFreeList>::dict_census_update(size_t size, bool split, bool birth){
+void AFLBinaryTreeDictionary::dict_census_update(size_t size, bool split, bool birth){
   TreeList<FreeChunk, AdaptiveFreeList>* nd = find_list(size);
   if (nd) {
     if (split) {
@@ -911,7 +911,7 @@
 
 #ifndef SERIALGC
 template <>
-bool BinaryTreeDictionary<FreeChunk, AdaptiveFreeList>::coal_dict_over_populated(size_t size) {
+bool AFLBinaryTreeDictionary::coal_dict_over_populated(size_t size) {
   if (FLSAlwaysCoalesceLarge) return true;
 
   TreeList<FreeChunk, AdaptiveFreeList>* list_of_size = find_list(size);
@@ -1288,7 +1288,7 @@
 
 #ifndef SERIALGC
 template <>
-void BinaryTreeDictionary<FreeChunk, AdaptiveFreeList>::print_dict_census(void) const {
+void AFLBinaryTreeDictionary::print_dict_census(void) const {
 
   gclog_or_tty->print("\nBinaryTree\n");
   AdaptiveFreeList<FreeChunk>::print_labels_on(gclog_or_tty, "size");