gpt4 book ai didi

c++ - CRT 调试堆在包含 exception_ptr.hpp 时报告泄漏

转载 作者:太空宇宙 更新时间:2023-11-04 13:45:28 27 4
gpt4 key购买 nike

我使用 Visual Studio 2013 (vc12) 和 Boost 1.56.0 创建了一个 Win32 控制台应用程序。

这是我唯一的文件:

#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>

//#define CHECK_THREAD

#ifdef CHECK_THREAD

#include <boost/thread.hpp>

#else

#ifdef _DEBUG
#define DEBUG_CLIENTBLOCK new( _CLIENT_BLOCK, __FILE__, __LINE__)
#else
#define DEBUG_CLIENTBLOCK
#endif // _DEBUG

#ifdef _DEBUG
#define new DEBUG_CLIENTBLOCK
#endif

#include <boost/exception/detail/exception_ptr.hpp>

#endif

#include <Windows.h>

int main()
{
HANDLE hLogFile = CreateFile(L"MemoryLeaks.txt", GENERIC_WRITE, FILE_SHARE_WRITE,
NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);

//Turn on debugging for memory leaks. This is automatically turned off when the build is Release.
_CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF);
_CrtSetReportMode(_CRT_WARN, _CRTDBG_MODE_FILE);
_CrtSetReportFile(_CRT_WARN, hLogFile);
_CrtSetReportMode(_CRT_ERROR, _CRTDBG_MODE_FILE);
_CrtSetReportFile(_CRT_ERROR, hLogFile);
_CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_FILE);
_CrtSetReportFile(_CRT_ASSERT, hLogFile);

_CrtDumpMemoryLeaks();

CloseHandle(hLogFile);
return 0;
}

当我运行此程序时(Windows 7 上的 Win32/Debug),我在 MemoryLeaks.txt 中得到以下输出:

Detected memory leaks!
Dumping objects ->
c:\workspace\externals\boost_1_56_0\include\boost\smart_ptr\detail\shared_count.hpp(130) : {156} client block at 0x00709AC8, subtype 0, 16 bytes long.
Data: < 0 p > 84 0F 0C 00 02 00 00 00 01 00 00 00 30 9A 70 00
{155} normal block at 0x00709A88, 14 bytes long.
Data: <bad exception > 62 61 64 20 65 78 63 65 70 74 69 6F 6E 00
c:\workspace\externals\boost_1_56_0\include\boost\exception\detail\exception_ptr.hpp(130) : {154} client block at 0x00709A30, subtype 0, 44 bytes long.
Data: < @ > 04 0E 0C 00 00 00 00 00 40 0E 0C 00 F0 0C 0C 00
c:\workspace\externals\boost_1_56_0\include\boost\smart_ptr\detail\shared_count.hpp(130) : {151} client block at 0x007089B0, subtype 0, 16 bytes long.
Data: <h X p > 68 0F 0C 00 02 00 00 00 01 00 00 00 58 89 70 00
c:\workspace\externals\boost_1_56_0\include\boost\exception\detail\exception_ptr.hpp(130) : {150} client block at 0x00708958, subtype 0, 44 bytes long.
Data: < X > B4 0C 0C 00 00 00 00 00 58 0D 0C 00 F0 0C 0C 00
Object dump complete.

我首先在包含 boost/thread.hpp 的单元测试中发现了这个问题。但是,单元测试不包括有关泄漏的源代码和行信息,并且 thread.hpp 不使用 DEBUG_CLIENTBLOCK 宏进行编译。所以我开始消除所有包含,直到我发现导致报告泄漏的那个是 exception_ptr,幸运的是这个确实用宏编译了。

我开了一张关于它的 Boost 票 ( https://svn.boost.org/trac/boost/ticket/10621 ),但我想我也应该在这里试试。我想也有可能是我做错了什么。

最佳答案

就像我在问题中提到的,这是 Boost 中的一个错误。你可以看到我在这里打开的票:https://svn.boost.org/trac/boost/ticket/10621

与此同时,自从我们迁移到 VC12 后,我们开始使用 std::thread,因此在我的特定情况下,这不再是问题。

关于c++ - CRT 调试堆在包含 exception_ptr.hpp 时报告泄漏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26214488/

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