**** Merged from MCS ****
[mono-project.git] / mcs / class / System / System.Diagnostics / ProcessThread.cs
blobf3c5118666938d4acc7144966b059ca93c86a6fa
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 //
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.
32 using System.ComponentModel;
33 using System.ComponentModel.Design;
35 namespace System.Diagnostics
37 [Designer ("System.Diagnostics.Design.ProcessThreadDesigner, " + Consts.AssemblySystem_Design, typeof (IDesigner))]
38 public class ProcessThread : Component
41 [MonoTODO ("Parse parameters")]
42 internal ProcessThread()
46 [MonoTODO]
47 [MonitoringDescription ("The base priority of this thread.")]
48 public int BasePriority {
49 get {
50 return(0);
54 [MonoTODO]
55 [MonitoringDescription ("The current priority of this thread.")]
56 public int CurrentPriority {
57 get {
58 return(0);
62 [MonoTODO]
63 [MonitoringDescription ("The ID of this thread.")]
64 public int Id {
65 get {
66 return(0);
70 [MonoTODO]
71 [Browsable (false)]
72 public int IdealProcessor {
73 set {
77 [MonoTODO]
78 [MonitoringDescription ("Thread gets a priority boot when interactively used by a user.")]
79 public bool PriorityBoostEnabled {
80 get {
81 return(false);
83 set {
87 [MonoTODO]
88 [MonitoringDescription ("The priority level of this thread.")]
89 public ThreadPriorityLevel PriorityLevel {
90 get {
91 return(ThreadPriorityLevel.Idle);
93 set {
97 [MonoTODO]
98 [MonitoringDescription ("The amount of CPU time used in privileged mode.")]
99 public TimeSpan PrivilegedProcessorTime {
100 get {
101 return(new TimeSpan(0));
105 [MonoTODO]
106 [Browsable (false)]
107 public IntPtr ProcessorAffinity {
108 set {
112 [MonoTODO]
113 [MonitoringDescription ("The start address in memory of this thread.")]
114 public IntPtr StartAddress {
115 get {
116 return((IntPtr)0);
120 [MonoTODO]
121 [MonitoringDescription ("The time this thread was started.")]
122 public DateTime StartTime {
123 get {
124 return(new DateTime(0));
128 [MonoTODO]
129 [MonitoringDescription ("The current state of this thread.")]
130 public ThreadState ThreadState {
131 get {
132 return(ThreadState.Initialized);
136 [MonoTODO]
137 [MonitoringDescription ("The total amount of CPU time used.")]
138 public TimeSpan TotalProcessorTime {
139 get {
140 return(new TimeSpan(0));
144 [MonoTODO]
145 [MonitoringDescription ("The amount of CPU time used in user mode.")]
146 public TimeSpan UserProcessorTime {
147 get {
148 return(new TimeSpan(0));
152 [MonoTODO]
153 [MonitoringDescription ("The reason why this thread is waiting.")]
154 public ThreadWaitReason WaitReason {
155 get {
156 return(ThreadWaitReason.Executive);
160 [MonoTODO]
161 public void ResetIdealProcessor() {