- Timestamp:
- Sep 3, 2009 3:25:09 PM (15 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMInternal.h
r22754 r22755 1790 1790 /** Counting explicit flushes of dirty pages by PGMPoolFlushPage(). */ 1791 1791 STAMCOUNTER StatForceFlushDirtyPage; 1792 /** Counting flushes for reused pages. */ 1793 STAMCOUNTER StatForceFlushReused; 1792 1794 /** Profiling time spent zeroing pages. */ 1793 1795 STAMPROFILE StatZeroPage; -
trunk/src/VBox/VMM/PGMPool.cpp
r22721 r22755 339 339 STAM_REG(pVM, &pPool->StatForceFlushPage, STAMTYPE_COUNTER, "/PGM/Pool/FlushForce", STAMUNIT_OCCURENCES, "Counting explicit flushes by PGMPoolFlushPage()."); 340 340 STAM_REG(pVM, &pPool->StatForceFlushDirtyPage, STAMTYPE_COUNTER, "/PGM/Pool/FlushForceDirty", STAMUNIT_OCCURENCES, "Counting explicit flushes of dirty pages by PGMPoolFlushPage()."); 341 STAM_REG(pVM, &pPool->StatForceFlushReused, STAMTYPE_COUNTER, "/PGM/Pool/FlushReused", STAMUNIT_OCCURENCES, "Counting flushes for reused pages."); 341 342 STAM_REG(pVM, &pPool->StatZeroPage, STAMTYPE_PROFILE, "/PGM/Pool/ZeroPage", STAMUNIT_TICKS_PER_CALL, "Profiling time spent zeroing pages. Overlaps with Alloc."); 342 343 # ifdef PGMPOOL_WITH_USER_TRACKING
Note:
See TracChangeset
for help on using the changeset viewer.