Changeset 10018 in vbox
- Timestamp:
- Jun 30, 2008 2:34:57 PM (16 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r10015 r10018 349 349 #ifdef VBOX_STRICT 350 350 if (pEvent->n.u8Vector == 0xE) 351 Log(("SVM: Inject int %d at %VGv error code=%0 8x CR2=%08xintInfo=%08x\n", pEvent->n.u8Vector, pCtx->rip, pEvent->n.u32ErrorCode, pCtx->cr2, pEvent->au64[0]));351 Log(("SVM: Inject int %d at %VGv error code=%02x CR2=%VGv intInfo=%08x\n", pEvent->n.u8Vector, pCtx->rip, pEvent->n.u32ErrorCode, pCtx->cr2, pEvent->au64[0])); 352 352 else 353 353 if (pEvent->n.u8Vector < 0x20) -
trunk/src/VBox/VMM/VMMR0/PGMR0.cpp
r9686 r10018 82 82 83 83 /* AMD uses the host's paging mode; Intel's version is on the todo list */ 84 Assert (enmShwPagingMode == PGMMODE_32_BIT || enmShwPagingMode == PGMMODE_PAE || enmShwPagingMode == PGMMODE_AMD64);84 AssertMsg(enmShwPagingMode == PGMMODE_32_BIT || enmShwPagingMode == PGMMODE_PAE || enmShwPagingMode == PGMMODE_PAE_NX || enmShwPagingMode == PGMMODE_AMD64 || enmShwPagingMode == PGMMODE_AMD64_NX, ("enmShwPagingMode=%d\n", enmShwPagingMode)); 85 85 86 86 #ifdef VBOX_WITH_STATISTICS
Note:
See TracChangeset
for help on using the changeset viewer.