// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*=============================================================================
**
** Class: ThreadState
**
**
** Purpose: Enum to represent the different thread states
**
** Date: Feb 2, 2000
**
=============================================================================*/
namespace System.Threading {
//|
public enum ThreadState
{
/*=========================================================================
** Constants for thread states.
=========================================================================*/
//|
Running = 0,
//|
Unstarted = 1,
//|
Stopping = 2,
//|
Stopped = 3,
Suspended = 4,
}
}