Newer
Older
DNA / corlib / System.Threading / ThreadState.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 371 bytes First commit
#if !LOCALTEST

namespace System.Threading {

	[Flags]
	public enum ThreadState {
		Running = 0x00000000,
		StopRequested = 0x00000001,
		SuspendRequested = 0x00000002,
		Background = 0x00000004,
		Unstarted = 0x00000008,
		Stopped = 0x00000010,
		WaitSleepJoin = 0x00000020,
		Suspended = 0x00000040,
		AbortRequested = 0x00000080,
		Aborted = 0x00000100,
	}

}

#endif