Introduction This article will demonstrate how to find memory leaks in a windows service written in C++ or plain C. Windows service is a special kind of application, that runs in the background and follows …
Continue readingMonth: January 2020
Valgrind for Windows
Valgrind is a developer tool for C++ developers used to find memory issues including C++ memory leak detection. Valgrind uses instrumentation to collect information about allocated and freed memory to gather complete information about memory …
Continue readingHow to check for memory leaks in Visual Studio?
Developers often ask how to detect memory leaks in Visual Studio. The newest versions of Visual Studio include some tool to monitor heap allocations. It’s a quite limited one for C++ developers that gives basic …
Continue reading