Changeset 23534 in vbox for trunk/src/VBox/VMM/PGMInternal.h
- Timestamp:
- Oct 3, 2009 9:54:08 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PGMInternal.h
r23518 r23534 2712 2712 struct 2713 2713 { 2714 /** The number of ready pages. */ 2715 uint32_t cReadyPages; 2716 /** The number of dirty pages. */ 2717 uint32_t cDirtyPages; 2714 /** Per type statistics. */ 2715 struct 2716 { 2717 /** The number of ready pages. */ 2718 uint32_t cReadyPages; 2719 /** The number of dirty pages. */ 2720 uint32_t cDirtyPages; 2721 } Rom, 2722 Mmio2, 2723 Ram; 2718 2724 /** The number of monitored pages. */ 2719 2725 uint32_t cMonitoredPages; 2720 2726 /** The number of ignored pages. */ 2721 2727 uint32_t cIgnoredPages; 2722 /** The number of dirty MMIO2 pages. */2723 uint32_t cDirtyMmio2Pages;2724 2728 /** Indicates that a live save operation is active. */ 2725 2729 bool fActive; 2726 2730 /** Padding. */ 2727 bool afReserved[ 3];2731 bool afReserved[4+3]; 2728 2732 } LiveSave; 2729 2733
Note:
See TracChangeset
for help on using the changeset viewer.