mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 03:24:38 +02:00
6765804: GC "dead ratios" should be unsigned
Reviewed-by: ysr, tonyp
This commit is contained in:
parent
8eb2e02296
commit
401e04572a
6 changed files with 27 additions and 26 deletions
|
@ -997,11 +997,11 @@ void OffsetTableContigSpace::serialize_block_offset_array_offsets(
|
|||
}
|
||||
|
||||
|
||||
int TenuredSpace::allowed_dead_ratio() const {
|
||||
size_t TenuredSpace::allowed_dead_ratio() const {
|
||||
return MarkSweepDeadRatio;
|
||||
}
|
||||
|
||||
|
||||
int ContigPermSpace::allowed_dead_ratio() const {
|
||||
size_t ContigPermSpace::allowed_dead_ratio() const {
|
||||
return PermMarkSweepDeadRatio;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue