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/ThreadState.cs')
-rwxr-xr-xmcs/class/System/System.Diagnostics/ThreadState.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/mcs/class/System/System.Diagnostics/ThreadState.cs b/mcs/class/System/System.Diagnostics/ThreadState.cs
deleted file mode 100755
index 12e4501c104..00000000000
--- a/mcs/class/System/System.Diagnostics/ThreadState.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-//
-// System.Diagnostics.ThreadState.cs
-//
-// Authors:
-// Dick Porter (dick@ximian.com)
-//
-// (C) 2002 Ximian, Inc. http://www.ximian.com
-//
-
-namespace System.Diagnostics {
- [Serializable]
- public enum ThreadState {
- Initialized=0,
- Ready=1,
- Running=2,
- Standby=3,
- Terminated=4,
- Transition=6,
- Unknown=7,
- Wait=5,
- }
-}