Table of Contents

Enum GcSuspendReason

Namespace
Typhon.Profiler
Assembly
Typhon.Profiler.dll

Reason the CLR suspended the execution engine. Values match GCSuspendEEBegin_V1.Reason from the Microsoft-Windows-DotNETRuntime EventSource — do not renumber.

public enum GcSuspendReason : byte

Fields

ForAppDomainShutdown = 2

Suspended for an AppDomain shutdown.

ForCodePitching = 3

Suspended for code pitching (JIT code eviction).

ForDebugger = 5

Suspended for the debugger.

ForDebuggerSweep = 7

Suspended for a debugger sweep.

ForGC = 1

Suspended to perform a garbage collection.

ForGCPrep = 6

Suspended in preparation for a garbage collection.

ForShutdown = 4

Suspended for process shutdown.

Other = 0

Suspension for a reason not covered by the other values.