pascalabcnet/VisualPascalABCNETLinux/MonoDebugging/Debugger/SuspendPolicy.cs

11 lines
149 B
C#
Raw Normal View History

2023-04-18 18:53:21 +03:00
namespace Mono.Debugger.Soft
{
// Keep it in sync with debugger-agent.h
public enum SuspendPolicy {
None = 0,
EventThread = 1,
All = 2
}
}