Changeset 91250 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Sep 15, 2021 12:43:24 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/PGMInternal.h
r91249 r91250 3632 3632 3633 3633 #ifdef VBOX_WITH_STATISTICS 3634 /** @name Statistics3635 * @{ */3636 /** R0: Which statistic this \#PF should be attributed to. */3637 R0PTRTYPE(PSTAMPROFILE) pStatTrap0eAttributionR0;3638 3634 /** These are statistics that used to be on the hyper heap. */ 3639 3635 PGMCPUSTATS Stats; 3640 /** @} */3641 3636 #endif 3642 3637 } PGMCPU; … … 3661 3656 #define PGM_SYNC_CLEAR_PGM_POOL RT_BIT(PGM_SYNC_CLEAR_PGM_POOL_BIT) 3662 3657 /** @} */ 3658 3659 3660 /** 3661 * PGM GVMCPU instance data. 3662 */ 3663 typedef struct PGMR0PERVCPU 3664 { 3665 #ifdef VBOX_WITH_STATISTICS 3666 /** R0: Which statistic this \#PF should be attributed to. */ 3667 R0PTRTYPE(PSTAMPROFILE) pStatTrap0eAttributionR0; 3668 #endif 3669 uint64_t u64Dummy; 3670 } PGMR0PERVCPU; 3663 3671 3664 3672
Note:
See TracChangeset
for help on using the changeset viewer.