GetProcessTimes(3w)
NAME
GetProcessTimes (KERNEL32.@)
SYNOPSIS
BOOL GetProcessTimes ( HANDLE hprocess, LPFILETIME lpCreationTime, LPFILETIME lpExitTime, LPFILETIME lpKernelTime, LPFILETIME lpUserTime )
DESCRIPTION
Get the user and kernel execution times of a process, along with the
creation and exit times if known.
PARAMS
hprocess [In] The process to be queried.
lpCreationTime [Out] The creation time of the process.
lpExitTime [Out] The exit time of the process if exited.
lpKernelTime [Out] The time spent in kernel routines in 100's of
nanoseconds.
lpUserTime [Out] The time spent in user routines in 100's of nanoseconds.
RETURNS
TRUE.
NOTES
olorin@fandra.org: Would be nice to subtract the cpu time used by Wine
at startup. Also, there is a need to separate times used by different
applications.
BUGS
KernelTime and UserTime are always for the current process
IMPLEMENTATION
Defined in "winbase.h".
Implemented in "build/buildd-wine-unstable_1.1.32-1+b1-amd64-KnxYu0/wine-unstable-1.1.32/build32/dlls/kernel32/time.c".
- Debug channel "time".