up vote 1 down vote favorite
1
share [g+] share [fb]

Let's put Heisenberg aside for a brief moment.

How would I go about to, from within my own process, monitor how much memory this process is using?

(I might have under-specified the question on purpose, dreaming of creative answers...)

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

Quassnoi is correct - but it also might be worth checking our this question:

How to determine CPU and memory consumption from inside a process which includes code examples

link|improve this answer
feedback

Use GetProcessMemoryInfo()

WorkingSetSize in PROCESS_MEMORY_COUNTERS_EX seems to be what you want.

link|improve this answer
Would have been great - outside of Windows Mobile (where I operate). Thanks, for the tip, though. – Johann Gerell Jan 26 '09 at 0:15
feedback

Your Answer

 
or
required, but never shown

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