New test.
[mono.git] / mcs / class / System / System.Diagnostics / ProcessThread.cs
1 //
2 // System.Diagnostics.ProcessThread.cs
3 //
4 // Authors:
5 //   Dick Porter (dick@ximian.com)
6 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
7 //
8 // (C) 2002 Ximian, Inc.  http://www.ximian.com
9 //
10
11 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 // 
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 // 
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 //
31
32 using System.ComponentModel;
33 using System.ComponentModel.Design;
34
35 namespace System.Diagnostics 
36 {
37         [Designer ("System.Diagnostics.Design.ProcessThreadDesigner, " + Consts.AssemblySystem_Design)]
38         public class ProcessThread : Component 
39         {
40
41                 [MonoTODO ("Parse parameters")]
42                 internal ProcessThread() 
43                 {
44                 }
45
46                 [MonoTODO]
47                 [MonitoringDescription ("The base priority of this thread.")]
48                 public int BasePriority {
49                         get {
50                                 return(0);
51                         }
52                 }
53
54                 [MonoTODO]
55                 [MonitoringDescription ("The current priority of this thread.")]
56                 public int CurrentPriority {
57                         get {
58                                 return(0);
59                         }
60                 }
61
62                 [MonoTODO]
63                 [MonitoringDescription ("The ID of this thread.")]
64                 public int Id {
65                         get {
66                                 return(0);
67                         }
68                 }
69
70                 [MonoTODO]
71                 [Browsable (false)]
72                 public int IdealProcessor {
73                         set {
74                         }
75                 }
76
77                 [MonoTODO]
78                 [MonitoringDescription ("Thread gets a priority boot when interactively used by a user.")]
79                 public bool PriorityBoostEnabled {
80                         get {
81                                 return(false);
82                         }
83                         set {
84                         }
85                 }
86
87                 [MonoTODO]
88                 [MonitoringDescription ("The priority level of this thread.")]
89                 public ThreadPriorityLevel PriorityLevel {
90                         get {
91                                 return(ThreadPriorityLevel.Idle);
92                         }
93                         set {
94                         }
95                 }
96
97                 [MonoTODO]
98                 [MonitoringDescription ("The amount of CPU time used in privileged mode.")]
99                 public TimeSpan PrivilegedProcessorTime {
100                         get {
101                                 return(new TimeSpan(0));
102                         }
103                 }
104
105                 [MonoTODO]
106                 [Browsable (false)]
107                 public IntPtr ProcessorAffinity {
108                         set {
109                         }
110                 }
111
112                 [MonoTODO]
113                 [MonitoringDescription ("The start address in memory of this thread.")]
114                 public IntPtr StartAddress {
115                         get {
116                                 return((IntPtr)0);
117                         }
118                 }
119
120                 [MonoTODO]
121                 [MonitoringDescription ("The time this thread was started.")]
122                 public DateTime StartTime {
123                         get {
124                                 return(new DateTime(0));
125                         }
126                 }
127
128                 [MonoTODO]
129                 [MonitoringDescription ("The current state of this thread.")]
130                 public ThreadState ThreadState {
131                         get {
132                                 return(ThreadState.Initialized);
133                         }
134                 }
135
136                 [MonoTODO]
137                 [MonitoringDescription ("The total amount of CPU time used.")]
138                 public TimeSpan TotalProcessorTime {
139                         get {
140                                 return(new TimeSpan(0));
141                         }
142                 }
143
144                 [MonoTODO]
145                 [MonitoringDescription ("The amount of CPU time used in user mode.")]
146                 public TimeSpan UserProcessorTime {
147                         get {
148                                 return(new TimeSpan(0));
149                         }
150                 }
151
152                 [MonoTODO]
153                 [MonitoringDescription ("The reason why this thread is waiting.")]
154                 public ThreadWaitReason WaitReason {
155                         get {
156                                 return(ThreadWaitReason.Executive);
157                         }
158                 }
159
160                 [MonoTODO]
161                 public void ResetIdealProcessor() {
162                 }
163         }
164 }