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

ProcessPriorityClass.cs « System.Diagnostics « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4218bb4390e69be5a6f8e0035096d1d84454cc1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.Diagnostics.ProcessPriorityClass.cs
//
// Authors:
//	Dick Porter (dick@ximian.com)
//
// (C) 2002 Ximian, Inc.  http://www.ximian.com
//

namespace System.Diagnostics {
	[Serializable]
	public enum ProcessPriorityClass {
		AboveNormal=0x08000,
		BelowNormal=0x04000,
		High=0x00080,
		Idle=0x00040,
		Normal=0x00020,
		RealTime=0x00100,
	}
}