I want to know the maximum amount of heap allocated by the process during it's work.
mallinfo() gives me amount of currently allocated memory. So, I can ask mallinfo() friquently in sepparate thread and store the maximum value.
But, maybe, such information about a process are written somewhere in the system? First of all I'm interested in Windows.
Thanks for any help and comments.