Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ GetThreadTimes()

ProcessThreadTimes System.Diagnostics.ProcessThread.GetThreadTimes ( )
inlineprivate

Definition at line 189 of file ProcessThread.cs.

190 {
192 ProcessThreadTimes processThreadTimes = new ProcessThreadTimes();
193 if (!global::Interop.Kernel32.GetThreadTimes(handle, out processThreadTimes._create, out processThreadTimes._exit, out processThreadTimes._kernel, out processThreadTimes._user))
194 {
195 throw new Win32Exception();
196 }
197 return processThreadTimes;
198 }
SafeThreadHandle OpenThreadHandle(int access)

References System.Diagnostics.ProcessThreadTimes._create, System.Diagnostics.ProcessThreadTimes._exit, System.Diagnostics.ProcessThreadTimes._kernel, System.Diagnostics.ProcessThreadTimes._user, System.handle, and System.Diagnostics.ProcessThread.OpenThreadHandle().

Referenced by System.Diagnostics.ProcessThread.GetStartTime().