c++ - Tool for detecting memory leaks -


How do memory leak detection tools work pure and valgrind?

How can I design and apply my such tools to usually equipment exeutable with their own code?

malloc () and free () which allows them to follow all the allocation.

Visual Studio did this automatically by using the function from the _CrtDumpMemoryLeaks ()

family using only the C runtime library can go.

Comments