GetThreadTimes.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

NAME

GetThreadTimes (KERNEL32.@)

SYNOPSIS

BOOL GetThreadTimes
 (
  HANDLE     thread,
  LPFILETIME creationtime,
  LPFILETIME exittime,
  LPFILETIME kerneltime,
  LPFILETIME usertime
 )

PARAMS

thread [In] Specifies the thread of interest.

creationtime [Out] When the thread was created.

exittime [Out] When the thread was destroyed.

kerneltime [Out] Time thread spent in kernel mode.

usertime [Out] Time thread spent in user mode.

DESCRIPTION

GetThreadTimes [KERNEL32.@] Obtains timing information.

RETURNS

Success: TRUE

Failure: FALSE

IMPLEMENTATION

Defined in "winbase.h".

Implemented in "dlls/kernel32/thread.c".

Debug channel "thread".