The 'Debugger' class (1) already exists (in the corlib assembly), and
[mono.git] / mcs / class / System / System.Diagnostics / ThreadWaitReason.cs
1 //
2 // System.Diagnostics.ThreadWaitReason.cs
3 //
4 // Authors:
5 //      Dick Porter (dick@ximian.com)
6 //
7 // (C) 2002 Ximian, Inc.  http://www.ximian.com
8 //
9
10 namespace System.Diagnostics {
11         [Serializable]
12         public enum ThreadWaitReason {
13                 EventPairHigh=7,
14                 EventPairLow=8,
15                 ExecutionDelay=4,
16                 Executive=0,
17                 FreePage=1,
18                 LpcReceive=9,
19                 LpcReply=10,
20                 PageIn=2,
21                 PageOut=12,
22                 Suspended=5,
23                 SystemAllocation=3,
24                 Unknown=13,
25                 UserRequest=6,
26                 VirtualMemory=11,
27         }
28 }