Undocumented functions of NTDLL

2OOO, 19 December


THREAD_TIMES_INFORMATION
THREAD_TIMES_INFORMATION

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.




Documented by:
Tomasz Nowak



Requirements:
Library: ntdll.lib


See also:
NtQueryInformationThread
THREAD_INFORMATION_CLASS