Working set larger than Heap size reported by CLR Debug

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an app. CLR Debug says the heap is 3.5MB. perfmon says that working
set size is 52MB.

Where's the unreported amount and how can I inspet it?
 
The managed heap is only a (small) part of the working set. The remaining
part is taken by the CLR runtime code, the C runtime library, the unmanaged
heap, the commited stack space.

Willy.
 
Thanks... So how can I inspect it? :-)

Willy Denoyette said:
The managed heap is only a (small) part of the working set. The remaining
part is taken by the CLR runtime code, the C runtime library, the unmanaged
heap, the commited stack space.

Willy.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top