Changeset 37386 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Jun 8, 2011 3:15:11 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 72171
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/HWACCMInternal.h
r37323 r37386 285 285 286 286 /** Maximum ASID allowed. */ 287 RTUINTuMaxASID;287 uint32_t uMaxASID; 288 288 289 289 /** The maximum number of resumes loops allowed in ring-0 (safety precaution). … … 570 570 571 571 /** Set when the TLB has been checked until we return from the world switch. */ 572 volatile uint8_tfCheckedTLBFlush;572 volatile bool fCheckedTLBFlush; 573 573 uint8_t bAlignment[3]; 574 574 575 /** World switch exit counter. */ 576 volatile uint32_t cWorldSwitchExits; 577 575 578 /** HWACCM_CHANGED_* flags. */ 576 RTUINTfContextUseFlags;579 uint32_t fContextUseFlags; 577 580 578 581 /** Id of the last cpu we were executing code on (NIL_RTCPUID for the first time) */ … … 580 583 581 584 /** TLB flush count */ 582 RTUINTcTLBFlushes;585 uint32_t cTLBFlushes; 583 586 584 587 /** Current ASID in use by the VM */ 585 RTUINT uCurrentASID; 586 587 /** World switch exit counter. */ 588 volatile uint32_t cWorldSwitchExit; 588 uint32_t uCurrentASID; 589 589 590 uint32_t u32Alignment; 590 591 … … 776 777 }; 777 778 778 RTUINTpadding2[1];779 uint32_t padding2[1]; 779 780 780 781 STAMPROFILEADV StatEntry;
Note:
See TracChangeset
for help on using the changeset viewer.