A | B | C |  D | E | F |  G | H | I |  J | K | L |  M | N | O |  P | Q | R |  S | T | U |  V | W | X |  Y | Z



GetThreadTimes

The GetThreadTimes function obtains timing information about a specified thread.

VB4-32,5,6
Declare Function GetThreadTimes Lib "kernel32" (ByVal hThread As Long, lpCreationTime As FILETIME, lpExitTime As FILETIME, lpKernelTime As FILETIME, lpUserTime As FILETIME) As Long

Operating Systems Supported
Requires Windows NT 3.1 or later; Win9x/ME: Not supported

Library
Kernel32

Parameter Information
- hThread
An open handle that specifies the thread whose timing information is sought. This handle must be created with THREAD_QUERY_INFORMATION access. For more information, see Thread Objects.

- lpCreationTime
Points to a FILETIME structure that receives the creation time of the thread.

- lpExitTime
Points to a FILETIME structure that receives the exit time of the thread. If the thread has not exited, the content of this structure is undefined.

- lpKernelTime
Points to a FILETIME structure that receives the amount of time that the thread has executed in kernel mode.

- lpUserTime
Points to a FILETIME structure that receives the amount of time that the thread has executed in user mode.

Return Values
If the function succeeds, the return value is nonzero.

If the function fails, the return value is zero. To get extended error information, call GetLastError.

Last update: 07 April 2006