vote up 0 vote down star

Hi I am looking for a tool which let me explore process' memory allocation on Windows e.g. Starting address of the process Allocated memory segments, there addresses Stack and Heap addresses and current stack pointer Objects on Heap and there addresses Referenced libraries I have used Process Explorer but it talks about total usage not segment wise allocation/usage. PE Explorer is of no use as it is static Thanks

flag

5 Answers

vote up 0 vote down

I found ollydbg very relative to my question, i will explore this tool in depth. Other tools are use full too but in different context.

link|flag
vote up 1 vote down

I really like the ProcessExplorer from Symantec (now it is Microsoft). It can display lot's of information per process and shows memory and commit history in tray.

Very nice tool!

link|flag
vote up 0 vote down

For on the fly heap usage, you may also want to look at an exception profiler such as Boundschecker in active check mode.

link|flag
vote up 2 vote down

Process Viewer (PrcView) gives a good deal of information on running processes.

link|flag
vote up 1 vote down

To know how your process is behaving at runtime and how its stack and memory allocation stands at any point in execution, you need a debugger. Visual studio debugger can do just fine, but if you want an advanced view of your process, use ollydbg

link|flag

Your Answer

Get an OpenID
or

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