Changeset 4420 in vbox
- Timestamp:
- Aug 29, 2007 11:05:39 AM (17 years ago)
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r4411 r4420 1225 1225 { 1226 1226 #if 1 1227 rc = (IoExitInfo.n.u1Type == 0) ? VINF_IOM_HC_IOPORT_WRITE : VINF_IOM_HC_IOPORT_READ; 1227 /** @todo the ring 3 emulation somehow causes the host to hang during e.g. nt4 installation; fall back to the recompiler */ 1228 rc = VINF_EM_RAW_EMULATE_INSTR; 1228 1229 break; 1229 #else /** @todo broken code path (hangs/crashes host) */1230 #else 1230 1231 /* ins/outs */ 1231 1232 uint32_t prefix = 0; -
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r4411 r4420 1701 1701 { 1702 1702 #if 1 1703 rc = fIOWrite ? VINF_IOM_HC_IOPORT_WRITE : VINF_IOM_HC_IOPORT_READ; 1703 /** @todo the ring 3 emulation somehow causes the host to hang during e.g. nt4 installation; fall back to the recompiler */ 1704 rc = VINF_EM_RAW_EMULATE_INSTR; 1704 1705 break; 1705 #else /** @todo broken code path (hangs/crashes host) */1706 #else 1706 1707 /* ins/outs */ 1707 1708 uint32_t prefix = 0;
Note:
See TracChangeset
for help on using the changeset viewer.