2OOO, 19 December
typedef struct _THREAD_TIMES_INFORMATION {
LARGE_INTEGER CreationTime;
LARGE_INTEGER ExitTime;
LARGE_INTEGER KernelTime;
LARGE_INTEGER UserTime;
} THREAD_TIMES_INFORMATION, *PTHREAD_TIMES_INFORMATION;
Time of thread creation.
Time of thread termination.
Time that thread spent in KernelMode.
Time that thread spent in UserMode.
Structure is used with ThreadTimes information class in NtQueryInformationThread call.