Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ public class JvmPauseMonitor {
public static final String INFO_THRESHOLD_KEY = "jvm.pause.info-threshold.ms";
public static final long INFO_THRESHOLD_DEFAULT = 1000;

private long numGcWarnThresholdExceeded = 0;
private long numGcInfoThresholdExceeded = 0;
private long totalGcExtraSleepTime = 0;
private volatile long numGcWarnThresholdExceeded = 0;
private volatile long numGcInfoThresholdExceeded = 0;
private volatile long totalGcExtraSleepTime = 0;

private Thread monitorThread;
private volatile boolean shouldRun = true;
Expand Down
Loading