Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ThreadState.cs « System.Diagnostics « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12e4501c104a33aec53d54b1ac99332e0fb16a66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//
// 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,
	}
}