gpt4 book ai didi

c++ - ApplicationVerifier 未检测到句柄泄漏,我该怎么办?

转载 作者:行者123 更新时间:2023-11-28 08:34:15 25 4
gpt4 key购买 nike

我确实选择了正确的可执行文件,因为我可以让它响应我所做的某些事情。但是我无法让 ApplicationVerifier 正确检测句柄泄漏。

这是一个例子:

int APIENTRY _tWinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPTSTR lpCmdLine,
int nCmdShow)
{
HANDLE hFile = CreateFile(_T("C:\\test.txt"), GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, NULL);
return 0;
}

ApplicationVerifier 没有检测到这一点。

如何检测上述问题?

最佳答案

您的代码是否仅通过 CreateFile 创建句柄?如果是这样,您可以将这些方法宏设置为执行自定义实现的泄漏检测的版本。这是很多工作,但它会完成工作。

#if DEBUG
#define CreateFile DebugCreateFile
#define CloseHandle DebugCloseHandle
#endif
// in another cpp file
#undef CreateFile
#undef CloseHandle
HANDLE DebugCreateFile(...) {
HANDLE real = ::CreateFile(...);
TrackHandle(real);
return real;
}
void DebugCloseHandle(HANDLE target) {
if (IsTracked(target)) { Untrack(target); }
::CloseHandle(target);
}
void CheckForLeaks() {
// Look for still registered handles
}

在程序结束时,您需要调用 CheckForLeaks。就像我说的,虽然需要做很多工作,但它可能对您的场景有所帮助。

关于c++ - ApplicationVerifier 未检测到句柄泄漏,我该怎么办?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/318420/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com