Skip to content

Commit

Permalink
Mark ConcurrentModeFailure and ConcurrentModeInterrupted as CMSPhase (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
loyispa authored Jan 30, 2024
1 parent 3cb229b commit 4ece7df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import com.microsoft.gctoolkit.event.GarbageCollectionTypes;
import com.microsoft.gctoolkit.time.DateTimeStamp;

public class ConcurrentModeFailure extends FullGC {
public class ConcurrentModeFailure extends FullGC implements CMSPhase {

public ConcurrentModeFailure(DateTimeStamp timeStamp, GCCause cause, double duration) {
super(timeStamp, GarbageCollectionTypes.ConcurrentModeFailure, cause, duration);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import com.microsoft.gctoolkit.event.GarbageCollectionTypes;
import com.microsoft.gctoolkit.time.DateTimeStamp;

public class ConcurrentModeInterrupted extends FullGC {
public class ConcurrentModeInterrupted extends FullGC implements CMSPhase {

public ConcurrentModeInterrupted(DateTimeStamp timeStamp, GarbageCollectionTypes type, GCCause cause, double duration) {
super(timeStamp, type, cause, duration);
Expand Down

0 comments on commit 4ece7df

Please sign in to comment.