Memory Analyzer

Started by
5 comments, last by KodeNerd 15 years, 8 months ago
Does anyone know of any utilities that analyze exactly how much Ram (and if possible, processing time) is being used?
------------George Gough
Advertisement
Fluid Studios MMGR is free and works well for its price.

IBM's Purify is expensive and I hear it's God's gift to C++ programmers.
Process Explorer will tell you how much processing time a program is getting. It will also tell you the size of that program's working set, which is about as close to RAM usage as you'll get under Windows.
"I thought what I'd do was, I'd pretend I was one of those deaf-mutes." - the Laughing Man
I definitely missed the point of his question, I second process explorer.
Windows task manager via CTRL ALT DEL

Open the process tab, then choose on the menu select columns, there you'll find the amount of CPU time each task is using (hh:mm:ss), current memory usage, maximum memmory usage, and more.
The task manager tells how much non-paged pool a process uses and non-paged pool is ram (basically) but it's only accessible in kernel mode not user mode - meaning that your code can only affect that indirectly (unless you're writing a device driver).
"I thought what I'd do was, I'd pretend I was one of those deaf-mutes." - the Laughing Man
Thanks LessBread.

Don't worry Dust, I needed something along those lines as well.
------------George Gough

This topic is closed to new replies.

Advertisement