mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8000351: Tenuring threshold should be unsigned
Change the flags and variables related to tenuring threshold to be unsigned Reviewed-by: jmasa, johnc
This commit is contained in:
parent
88ab075a6d
commit
3506d44c57
22 changed files with 55 additions and 55 deletions
|
@ -188,7 +188,7 @@ class GCAdaptivePolicyCounters : public GCPolicyCounters {
|
|||
inline void update_survivor_overflowed(bool survivor_overflowed) {
|
||||
_survivor_overflowed_counter->set_value(survivor_overflowed);
|
||||
}
|
||||
inline void update_tenuring_threshold(int threshold) {
|
||||
inline void update_tenuring_threshold(uint threshold) {
|
||||
tenuring_threshold()->set_value(threshold);
|
||||
}
|
||||
inline void update_increment_tenuring_threshold_for_gc_cost() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue