Memory Leak Finder
-
I am looking for a tool to aid our development and QA team find memory leaks. Right now we use Perfmon to monitor Private Bytes of application but we are ready to invest in a more advanced tool. Can anyone suggest some tools for me to research? Environment is VC6 on W2k and higher. Applications range from services to GUI apps. We use STL, MFC and other 3rd Party libraries. Thanks!
-
I am looking for a tool to aid our development and QA team find memory leaks. Right now we use Perfmon to monitor Private Bytes of application but we are ready to invest in a more advanced tool. Can anyone suggest some tools for me to research? Environment is VC6 on W2k and higher. Applications range from services to GUI apps. We use STL, MFC and other 3rd Party libraries. Thanks!
Commerical? Check this out: Compuware Boundschecker Rickard Andersson Here is my card, contact me later! UIN: 50302279 Sonork: 37318
-
I am looking for a tool to aid our development and QA team find memory leaks. Right now we use Perfmon to monitor Private Bytes of application but we are ready to invest in a more advanced tool. Can anyone suggest some tools for me to research? Environment is VC6 on W2k and higher. Applications range from services to GUI apps. We use STL, MFC and other 3rd Party libraries. Thanks!
to find memory leaks is the easiest possible thing. just create own new/delete, malloc/free, ... functions and add an item to a list when something is allocated and delete the item when there is a free call. so when the app will be closed, you can dump all the remaining items(leaks). Don't try it, just do it! ;-)