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.
 
Back
Top