Click here to Skip to main content
15,867,330 members
Articles / Mobile Apps

Memory leak detection for WinCE

Rate me:
Please Sign up or sign in to vote.
3.83/5 (16 votes)
12 Jun 2001CPOL2 min read 254.9K   822   64   50
This code detects memory leaks in embedded VC++ almost the same way crtdbg does in VC++.

Introduction

This code detects memory leaks in embedded VC++ almost the same way crtdbg does in VC++. At the end of program execution it will display in the debug window if there were any memory leaks and how the memory looks so you can identify where your memory leak occurred. It will display in the debug window a message saying no memory leaks detected if there are no memory leaks. Similar to what crtdbg.h does in VC++. The code detects memory leaks generated with calls to new and delete operators in C++. The code doesn't detect memory leaks generated with C functions: malloc, calloc, free, but that can be done in the future. Let me know and I will program it.

There are 3 simple steps in order to enable memory leak detection:

  1. Define _DEBUG
    #define _DEBUG
  2. Include "crtdbg.h"
    #include "crtdbg.h"
  3. Let your first line in the code be:
    _CrtSetDbgFlag (ON);

Tips on debugging:

Tip 1:

Although it doesn't display the line where the memory leak occurred (read Tip 2), the utility display the address in hex, and you can add a small code to the operator new function, just after the first malloc:

if (retPtr == (void*)0x76DA0)
    dumb instruction; <- place a breakpoint on this one

so you can detect easily which line of your code called the operator new to allocate memory at the specified address and wasn't freed.

Tip 2:

Here's a trick that allow you to get the correct line and filename where the memory leak occurred. Define the following line in every file, or define it in a header file and include it in every file where you want accurate line and filename:

#define new new(_T(__FILE__), __LINE__)

What the code actually does is override the global operator new that besides allocating memory, it retains the pointer to the allocated memory in a list. The operator delete simply releases memory and deletes the reference to that memory from the list. In the end of the program execution, all the pointers still in the list simply mean memory leaks, and they are displayed in the debug window.

The macro _CrtSetDbgFlag (ON); simply declares an instance of garbageCollector. It has to be the first line of your code, to insure it is the last variable in your program to be destroy, as in its destructor it performs checking of the pointer list and it displays memory leaks. So its destructor must be the last destructor called.

License

Public domain

Comments

Please report any bugs to Ciprian_Miclaus@yahoo.com. You can use and distribute this code freely, but please keep these few lines. If you make any improvements, or have any ideas about how this code could be improved or just you feel you need to comment this code in any way, please send your comments, idea, improvements to me to my email above.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralEnabling memory leak detection in VC++ Pin
elizas26-Feb-10 2:34
elizas26-Feb-10 2:34 
QuestionHow to port wince in smdk2410 board. Pin
amiya das30-Mar-08 21:41
amiya das30-Mar-08 21:41 
Questionwhat about new byte[x] and delete [] Pin
bsyossi14-Jan-07 23:29
bsyossi14-Jan-07 23:29 
GeneralC rountines Pin
markpotts16-Nov-06 0:15
markpotts16-Nov-06 0:15 
GeneralRe: C rountines Pin
Cookie FJ15-Feb-08 18:06
Cookie FJ15-Feb-08 18:06 
QuestionWhat if CMemoryDump Pin
Sreekanth Muralidharan28-Nov-05 19:18
Sreekanth Muralidharan28-Nov-05 19:18 
GeneralSolution for possible bug with delete Pin
Tommyknocker19806-Oct-05 22:48
Tommyknocker19806-Oct-05 22:48 
GeneralRe: Solution for possible bug with delete Pin
Sreekanth Muralidharan30-Nov-05 16:59
Sreekanth Muralidharan30-Nov-05 16:59 
GeneralRe: Solution for possible bug with delete Pin
lenux27-Feb-08 21:00
lenux27-Feb-08 21:00 
Generalactivation key Pin
chhavir27-Jul-05 22:17
chhavir27-Jul-05 22:17 
General&quot;new&quot; error Pin
kurtak8-Mar-05 23:22
kurtak8-Mar-05 23:22 
GeneralRe: &amp;quot;new&amp;quot; error Pin
Sreekanth Muralidharan8-Dec-05 21:59
Sreekanth Muralidharan8-Dec-05 21:59 
GeneralReports wrong filename (and line number) Pin
polgie27-May-04 22:58
polgie27-May-04 22:58 
GeneralRe: Reports wrong filename (and line number) Pin
Sreekanth Muralidharan1-Dec-05 16:39
Sreekanth Muralidharan1-Dec-05 16:39 
GeneralNow its ready for WCE MFC. Pin
Piotr Boguslawski24-Nov-03 1:56
Piotr Boguslawski24-Nov-03 1:56 
GeneralRe: Now its ready for WCE MFC. Pin
jasonpkuphy16-May-05 23:15
jasonpkuphy16-May-05 23:15 
GeneralRe: Now its ready for WCE MFC. Pin
Tommyknocker19806-Oct-05 22:52
Tommyknocker19806-Oct-05 22:52 
JokeRe: Now its ready for WCE MFC. Pin
poney22-Mar-06 23:00
poney22-Mar-06 23:00 
GeneralRe: Now its ready for WCE MFC. Pin
bsyossi14-Jan-07 22:31
bsyossi14-Jan-07 22:31 
GeneralIn Mfc ,it report inexistent memory leak Pin
jasonpkuphy25-Aug-03 17:22
jasonpkuphy25-Aug-03 17:22 
GeneralRe: In Mfc ,it report inexistent memory leak Pin
jasonpkuphy25-Aug-03 17:45
jasonpkuphy25-Aug-03 17:45 
Questionhow to use Pin
sillychai24-Dec-02 23:30
sillychai24-Dec-02 23:30 
Generalwriting a task manager in c++ Pin
Phienix20-Oct-02 11:22
sussPhienix20-Oct-02 11:22 
GeneralRe: writing a task manager in c++ Pin
Sreekanth Muralidharan8-Dec-05 17:11
Sreekanth Muralidharan8-Dec-05 17:11 
GeneralError during debug Pin
Anonymous11-Oct-02 0:20
Anonymous11-Oct-02 0:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.