Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.Diagnostics/ThreadWaitReason.cs')
-rwxr-xr-xmcs/class/System/System.Diagnostics/ThreadWaitReason.cs28
1 files changed, 0 insertions, 28 deletions
diff --git a/mcs/class/System/System.Diagnostics/ThreadWaitReason.cs b/mcs/class/System/System.Diagnostics/ThreadWaitReason.cs
deleted file mode 100755
index 97946549f39..00000000000
--- a/mcs/class/System/System.Diagnostics/ThreadWaitReason.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-//
-// System.Diagnostics.ThreadWaitReason.cs
-//
-// Authors:
-// Dick Porter (dick@ximian.com)
-//
-// (C) 2002 Ximian, Inc. http://www.ximian.com
-//
-
-namespace System.Diagnostics {
- [Serializable]
- public enum ThreadWaitReason {
- EventPairHigh=7,
- EventPairLow=8,
- ExecutionDelay=4,
- Executive=0,
- FreePage=1,
- LpcReceive=9,
- LpcReply=10,
- PageIn=2,
- PageOut=12,
- Suspended=5,
- SystemAllocation=3,
- Unknown=13,
- UserRequest=6,
- VirtualMemory=11,
- }
-}