New tests.
[mono.git] / mcs / class / Mono.Debugger.Soft / Mono.Debugger.Soft / InvokeOptions.cs
1 using System;
2 using System.Collections.Generic;
3
4 namespace Mono.Debugger.Soft
5 {
6         [Flags]
7         public enum InvokeOptions {
8                 None = 0,
9                 /*
10                  * Disable breakpoints on the thread doing the invoke
11                  */
12                 DisableBreakpoints = 1,
13                 /*
14                  * Only resume the target thread during the invoke
15                  */
16                 SingleThreaded = 2
17         }
18 }