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/ThreadPriorityLevel.cs')
-rwxr-xr-xmcs/class/System/System.Diagnostics/ThreadPriorityLevel.cs21
1 files changed, 0 insertions, 21 deletions
diff --git a/mcs/class/System/System.Diagnostics/ThreadPriorityLevel.cs b/mcs/class/System/System.Diagnostics/ThreadPriorityLevel.cs
deleted file mode 100755
index 17297c10738..00000000000
--- a/mcs/class/System/System.Diagnostics/ThreadPriorityLevel.cs
+++ /dev/null
@@ -1,21 +0,0 @@
-//
-// System.Diagnostics.ThreadPriorityLevel.cs
-//
-// Authors:
-// Dick Porter (dick@ximian.com)
-//
-// (C) 2002 Ximian, Inc. http://www.ximian.com
-//
-
-namespace System.Diagnostics {
- [Serializable]
- public enum ThreadPriorityLevel {
- AboveNormal=1,
- BelowNormal=-1,
- Highest=2,
- Idle=-15,
- Lowest=-2,
- Normal=0,
- TimeCritical=15,
- }
-}