I need to know when the memory will be allocated for a particular program. How can i view where the memory is allocated.
|
|
|||||||||||
|
|
|
You'll need to be more specific with the OS, and perhaps language if it's interpreted or run time compiled (ie, PHP, JAVA, .NET, etc). However, in general:
It should be noted that even if memory has been allocated with the OS, it may not yet actually be assigned - the OS waits until the memory is used before it gets a page for it. A memory profiler will help you learn where and when this occurs for a given process. Where the memory is allocated is a much larger question. There are several points of view to consider:
Which perspective are you curious about? Are you writing code that runs within the program of interest, shares memory with it, runs on the same OS, runs on the same CPU, or hooking a logic analyzer up to the memory bus? -Adam |
|||
|
|
|
|
Just as a cautionary story, even if you don't allocate much yourself, the libraries you use might be doing lots of allocations, so you need something that ties into the kernel or framework. as Ben Hoffstein says dotTrace would probably be a good solution for .Net application (something that I only realized after looking at the question's tags) |
||
|
|
|
|
I'll take a stab here and recommend dotTrace, the best profiler I've used. It'll tell you memory usage and a lot more. |
||
|
|
|
|
Install Process Explorer, locate your application/process in the list, right click, Properties, Performance tab. |
||||||
|
