summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/Threading/ThreadState.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/Threading/ThreadState.cs')
-rw-r--r--src/mscorlib/src/System/Threading/ThreadState.cs35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/mscorlib/src/System/Threading/ThreadState.cs b/src/mscorlib/src/System/Threading/ThreadState.cs
deleted file mode 100644
index 2d953f384a..0000000000
--- a/src/mscorlib/src/System/Threading/ThreadState.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-// Licensed to the .NET Foundation under one or more agreements.
-// The .NET Foundation licenses this file to you under the MIT license.
-// See the LICENSE file in the project root for more information.
-
-//
-/*=============================================================================
-**
-**
-**
-** Purpose: Enum to represent the different thread states
-**
-**
-=============================================================================*/
-
-namespace System.Threading {
-
-[Serializable]
-[Flags]
- public enum ThreadState
- {
- /*=========================================================================
- ** Constants for thread states.
- =========================================================================*/
- Running = 0,
- StopRequested = 1,
- SuspendRequested = 2,
- Background = 4,
- Unstarted = 8,
- Stopped = 16,
- WaitSleepJoin = 32,
- Suspended = 64,
- AbortRequested = 128,
- Aborted = 256
- }
-}