pascalabcnet/VisualPascalABCNETLinux/MonoDebugging/Debugger/SuspendPolicy.cs
2023-04-18 17:53:21 +02:00

11 lines
149 B
C#

namespace Mono.Debugger.Soft
{
// Keep it in sync with debugger-agent.h
public enum SuspendPolicy {
None = 0,
EventThread = 1,
All = 2
}
}