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;
CreationTime
Time of thread creation.ExitTime
Time of thread termination.KernelTime
Time that thread spent in KernelMode.UserTime
Time that thread spent in UserMode.
Structure is used with ThreadTimes information class in NtQueryInformationThread call.