NAME

GetProcessTimes  (KERNEL32.@)

SYNOPSIS

 BOOL GetProcessTimes
 (
  HANDLE     hprocess,
  LPFILETIME lpCreationTime,
  LPFILETIME lpExitTime,
  LPFILETIME lpKernelTime,
  LPFILETIME lpUserTime
 )

PARAMS

hprocess [In] The process to be queried (obtained from PROCESS_QUERY_INFORMATION).
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.

DESCRIPTION

Get the user and kernel execution times of a process, along with the creation and exit times if known.

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

lpCreationTime and lpExitTime are not initialised in the Wine implementation.

IMPLEMENTATION

Defined in "winbase.h".

Implemented in "dlls/kernel/time.c". source.winehq.org/source/dlls/kernel/time.c

Debug channel "time".


Copyright © 2005 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Aug 2005.