- Timestamp:
- Jun 4, 2007 10:04:21 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/TRPMAll.cpp
r2981 r3015 367 367 #ifdef DEBUG 368 368 if (pRegFrame->eflags.Bits.u1VM) 369 Log(("TRPMForwardTrap-VM: eip=%04X:%04X iGate=%d\n", pRegFrame->cs, pRegFrame->eip, iGate)); 369 Log(("TRPMForwardTrap-VM: eip=%04X:%04X iGate=%d\n", pRegFrame->cs, pRegFrame->eip, iGate)); 370 370 else 371 371 Log(("TRPMForwardTrap: eip=%04X:%VGv iGate=%d\n", pRegFrame->cs, pRegFrame->eip, iGate)); … … 478 478 { 479 479 RTGCPTR pHandler, dummy; 480 GCPTRTYPE(uint32_t *) pTrapStackGC;480 GCPTRTYPE(uint32_t *) pTrapStackGC; 481 481 #ifndef IN_GC 482 HCPTRTYPE(uint32_t *) pTrapStackHC;482 HCPTRTYPE(uint32_t *) pTrapStackHC; 483 483 #endif 484 484 … … 490 490 /* Note: don't use current eflags as we might be in V86 mode and the IDT always contains protected mode selectors */ 491 491 X86EFLAGS fakeflags; 492 fakeflags.u32 = 0; 492 fakeflags.u32 = 0; 493 493 494 494 rc = SELMValidateAndConvertCSAddr(pVM, fakeflags, 0, GuestIdte.Gen.u16SegSel, NULL, pHandler, &dummy);
Note:
See TracChangeset
for help on using the changeset viewer.