cprogrammer
cprogrammer

Reputation: 5675

Windbg !address command result

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

Answers (1)

Jason Evans
Jason Evans

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

Related Questions