[sdb] Fix a deadlock in the assembly cache invalidation code.
[mono.git] / mcs / class / Mono.Debugger.Soft / Mono.Debugger.Soft / SuspendPolicy.cs
1
2 namespace Mono.Debugger.Soft
3 {
4         // Keep it in sync with debugger-agent.h
5         public enum SuspendPolicy {
6                 None = 0,
7                 EventThread = 1,
8                 All = 2
9         }
10 }