8240534: Shenandoah: ditch debug safepoint timeout adjustment

Reviewed-by: rkennke
This commit is contained in:
Aleksey Shipilev 2020-03-04 19:23:13 +01:00
parent ff843fabec
commit 01ef6d791f

View File

@ -191,16 +191,6 @@ void ShenandoahArguments::initialize() {
if (FLAG_IS_DEFAULT(TLABAllocationWeight)) {
FLAG_SET_DEFAULT(TLABAllocationWeight, 90);
}
// Make sure safepoint deadlocks are failing predictably. This sets up VM to report
// fatal error after 10 seconds of wait for safepoint syncronization (not the VM
// operation itself). There is no good reason why Shenandoah would spend that
// much time synchronizing.
#ifdef ASSERT
FLAG_SET_DEFAULT(SafepointTimeout, true);
FLAG_SET_DEFAULT(SafepointTimeoutDelay, 10000);
FLAG_SET_DEFAULT(AbortVMOnSafepointTimeout, true);
#endif
}
size_t ShenandoahArguments::conservative_max_heap_alignment() {