Changeset 36897 in vbox for trunk/src/VBox/VMM/include/PGMInternal.h
- Timestamp:
- Apr 29, 2011 3:11:55 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/PGMInternal.h
r36893 r36897 1300 1300 /** Pointer to self - RC pointer. */ 1301 1301 RCPTRTYPE(struct PGMRAMRANGE *) pSelfRC; 1302 1303 #ifdef PGM_USE_RAMRANGE_SEARCH_TREES 1304 /** Pointer to the left search three node - ring-3 context. */ 1305 R3PTRTYPE(struct PGMRAMRANGE *) pLeftR3; 1306 /** Pointer to the right search three node - ring-3 context. */ 1307 R3PTRTYPE(struct PGMRAMRANGE *) pRightR3; 1308 /** Pointer to the left search three node - ring-0 context. */ 1309 R0PTRTYPE(struct PGMRAMRANGE *) pLeftR0; 1310 /** Pointer to the right search three node - ring-0 context. */ 1311 R0PTRTYPE(struct PGMRAMRANGE *) pRightR0; 1312 /** Pointer to the left search three node - raw-mode context. */ 1313 RCPTRTYPE(struct PGMRAMRANGE *) pLeftRC; 1314 /** Pointer to the right search three node - raw-mode context. */ 1315 RCPTRTYPE(struct PGMRAMRANGE *) pRightRC; 1316 #endif 1317 1302 1318 /** Padding to make aPage aligned on sizeof(PGMPAGE). */ 1303 1319 uint32_t au32Alignment2[HC_ARCH_BITS == 32 ? 1 : 3];
Note:
See TracChangeset
for help on using the changeset viewer.