8005972: ParNew should not update the tenuring threshold when promotion failed has occurred

Reviewed-by: ysr, johnc, jwilhelm
This commit is contained in:
Bengt Rutisson 2013-01-14 21:30:45 +01:00
parent a3639fdea1
commit 33b7cd7cae
4 changed files with 11 additions and 15 deletions

View file

@ -347,10 +347,6 @@ class ParNewGeneration: public DefNewGeneration {
bool survivor_overflow() { return _survivor_overflow; }
void set_survivor_overflow(bool v) { _survivor_overflow = v; }
// Adjust the tenuring threshold. See the implementation for
// the details of the policy.
virtual void adjust_desired_tenuring_threshold();
public:
ParNewGeneration(ReservedSpace rs, size_t initial_byte_size, int level);