Changeset 1579 in vbox
- Timestamp:
- Mar 20, 2007 8:06:56 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 19688
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/TRPMAll.cpp
r1518 r1579 403 403 404 404 /* Retrieve the eflags including the virtualized bits. */ 405 /* * @notehackish as the cpumctxcore structure doesn't contain the right value */405 /* Note: hackish as the cpumctxcore structure doesn't contain the right value */ 406 406 eflags.u32 = CPUMRawGetEFlags(pVM, pRegFrame); 407 407 … … 493 493 /** @todo dpl <= cpl else GPF */ 494 494 495 /* * @notedon't use current eflags as we might be in V86 mode and the IDT always contains protected mode selectors */495 /* Note: don't use current eflags as we might be in V86 mode and the IDT always contains protected mode selectors */ 496 496 X86EFLAGS fakeflags; 497 497 fakeflags.u32 = 0; … … 633 633 } 634 634 635 /* * @note we use the eflags copy, that includes the virtualized bits! */636 /* * @note not really necessary as we grab include those bits in the trap/irq handler trampoline */635 /* Note: We use the eflags copy, that includes the virtualized bits! */ 636 /* Note: Not really necessary as we grab include those bits in the trap/irq handler trampoline */ 637 637 CTXSUFF(pTrapStack)[--idx] = eflags.u32; 638 638 … … 684 684 685 685 #ifdef IN_GC 686 /* * @noteshouldn't be necessary */686 /* Note: shouldn't be necessary */ 687 687 ASMSetCR2(pVM->trpm.s.uActiveCR2); 688 688
Note:
See TracChangeset
for help on using the changeset viewer.