Implement log file support.
[mono.git] / mcs / class / System / System.Diagnostics / ProcessPriorityClass.cs
1 //
2 // System.Diagnostics.ProcessPriorityClass.cs
3 //
4 // Authors:
5 //      Dick Porter (dick@ximian.com)
6 //
7 // (C) 2002 Ximian, Inc.  http://www.ximian.com
8 //
9
10 namespace System.Diagnostics {
11         [Serializable]
12         public enum ProcessPriorityClass {
13                 AboveNormal=0x08000,
14                 BelowNormal=0x04000,
15                 High=0x00080,
16                 Idle=0x00040,
17                 Normal=0x00020,
18                 RealTime=0x00100,
19         }
20 }