Reputation: 5675
Using Windbg, we can find some info about an !address
. One of the info us Usage.
What is the difference between: RegionUsageIsVAD
, or RegionUsageHeap
.
Upvotes: 2
Views: 4176
Reputation: 29186
Please check out this article which describes those stats. Basically, RegionUsageIsVAD
is details about virtual memory allocations. Whilst RegionUsageHeap
is information about allocations in the heap.
Upvotes: 3