我需要获取工作线程的 CPU 时间。看来我必须使用GetThreadTimes来执行此操作,因为我的目标是 Windows XP 和更新版本。根据文档,Windows XP 不支持QueryThreadCycleTime。
这是我写的一个测试程序的内容:
#include <windows.h>
UINT TestFunction(LPVOID pParam)
{
TRACE("Thread Started!\n");
Sleep(10000);
TRACE("Thread about to terminate!\n");
return 0;
}
...
CWinThread* thread = AfxBeginThread(TestFunction, NULL);
Sleep(500);
LPFILETIME creationTime = NULL;
LPFILETIME exitTime = NULL;
LPFILETIME kernelTime = NULL;
LPFILETIME userTime = NULL;
int result = GetThreadTimes(thread, creationTime, exitTime, kernelTime, userTime);
TRACE("Result: %d\n", result);
if(result != 0)
{
TRACE("Got result!\n");
}
else
{
//ref: http://msdn.microsoft.com/en-us/library/windows/desktop/ms680582(v=vs.85).aspx
LPVOID lpMsgBuf;
DWORD dw = GetLastError();
FormatMessage(
FORMAT_MESSAGE_ALLOCATE_BUFFER |
FORMAT_MESSAGE_FROM_SYSTEM |
FORMAT_MESSAGE_IGNORE_INSERTS,
NULL,
dw,
MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
(LPTSTR) &lpMsgBuf,
0, NULL
);
TRACE("Timing query failed with error %d: %s", dw, lpMsgBuf);
LocalFree(lpMsgBuf);
...
我得到以下调试输出:
Thread Started!
Result: 0
Timing query failed with error 6: The handle is invalid.
为什么是这样?我们知道线程正在运行是因为“线程已启动!” 跟踪消息。我尝试调整睡眠时间,直到线程终止。我仍然收到无效的句柄错误。
测试程序是一个用 Visual C++ 6 构建的 MFC 应用程序。