Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
If there is a way, it's specific to your particular malloc implementation. What compiler are you using? – Ben Voigt Aug 4 '11 at 13:06

2 Answers

No, there is no place in the system that keeps track of the maximum amount of heap memory that has been used by a process since its start.

share|improve this answer

If it's only for profiling, you can use a profiling tool, like valgrind's massif. I don't know what tools there are for windows, but there certainly are.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.