Tagged Questions
The crtdbg.h tag has no wiki summary.
3
votes
3answers
1k views
Override new operator in C++ while crtdbg.h is causing conflicts
While trying out some memory tracking and preparation for my own memory manager, I tried to override the new operator. The article on flipcode was my main guideline in this process ( ...
3
votes
3answers
2k views
Visual Studio _CrtDumpMemoryLeaks always skipping object dump
I'm trying to use the CRT memory leak detection but I keep getting the following message in Microsoft Visual Studio: "Detected memory leaks - skipping object dump." I can never get the it to actually ...
1
vote
1answer
242 views
MySQL C API compilation error, crtdbg.h not found
I'm creating a basic C program that uses the mysql api. I'm on windows, using mingw as my compiler and eclipse cdt as my IDE. I have added the include path to the mysql include files and the lib path ...
1
vote
1answer
261 views
replacing new with macro conflicts with placement new
I've got a massive application (several million LOC, and tens of thousands of files), and I'm trying to use the debug crt to detect memory leaks. I'm trying to macro-ize new like so:
#define ...
1
vote
3answers
2k views
Memory leaks detection while using Boost
I would like to get the memory leaks information using _CRTDBG_MAP_ALLOC, and especially the files and line numbers, but I don't get them at the end. I only get something like this:
{130} normal ...
1
vote
2answers
2k views
How to detect leaks under WinCE C/C+ runtime library?
I know the possibilities of basic leak detection for Win32 using the crtdbg.h header, but this header is unavailable in the CE CRT library headers (i'm using the lastest SDK v6.1).
Anyone knows how ...
0
votes
2answers
817 views
Why might _CrtSetBreakAlloc not cause a breakpoint?
I'm using Visual CRT's memory leak detection routines from <crtdbg.h>; when I call _CrtDumpMemoryLeaks one allocation is reported consistently on every invocation of the program:
{133} normal ...