hotspot/src/share/vm/memory/defNewGeneration.hpp
changeset 13925 37f75ba502b1
parent 13728 882756847a04
child 15215 048f775ae371
--- a/hotspot/src/share/vm/memory/defNewGeneration.hpp	Wed Oct 03 08:08:52 2012 -0700
+++ b/hotspot/src/share/vm/memory/defNewGeneration.hpp	Wed Oct 03 20:31:41 2012 +0200
@@ -43,7 +43,7 @@
 
 protected:
   Generation* _next_gen;
-  int         _tenuring_threshold;   // Tenuring threshold for next collection.
+  uint        _tenuring_threshold;   // Tenuring threshold for next collection.
   ageTable    _age_table;
   // Size of object to pretenure in words; command line provides bytes
   size_t        _pretenure_size_threshold_words;
@@ -325,7 +325,7 @@
                                 bool parallel = false);
 
   oop copy_to_survivor_space(oop old);
-  int tenuring_threshold() { return _tenuring_threshold; }
+  uint tenuring_threshold() { return _tenuring_threshold; }
 
   // Performance Counter support
   void update_counters();