Heapy
Heapy copied to clipboard
A Simple Heap Profiler for Windows C/C++ Applications
When profiling an application using FFMPEGs lib, allocations done inside their library code does not show up in the heapy profile.
Fix: - Use only Windows API for dll injection and profiling - Preserve last error code from original malloc / free - Delay injection until process entry point is reached...
``` #include #include struct Foo { char v [1024 * 1024 * 300]; // 300 Mb Foo() { std::cout
Would be great if this could work on Linux rather than just Windows.