Changeset 80258 in vbox
- Timestamp:
- Aug 14, 2019 4:35:42 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 132709
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/TRPMAll.cpp
r80015 r80258 300 300 * interrupts and software exceptions like \#BP, \#OF). 301 301 * 302 * The caller is responsible for making sure there is an active trap 0e303 * when makingthis request.302 * The caller is responsible for making sure there is an active trap when making 303 * this request. 304 304 * 305 305 * @param pVCpu The cross context virtual CPU structure. … … 310 310 Log2(("TRPMSetInstrLength: cbInstr=%u\n", cbInstr)); 311 311 AssertMsg(pVCpu->trpm.s.uActiveVector != ~0U, ("No active trap!\n")); 312 /** @todo We should be able to set the instruction length for a \#DB raised by 313 * INT1/ICEBP as well. However, TRPM currently has no way to distinguish 314 * INT1/ICEBP from regular \#DB. */ 312 315 AssertMsg( pVCpu->trpm.s.enmActiveType == TRPM_SOFTWARE_INT 313 316 || ( pVCpu->trpm.s.enmActiveType == TRPM_TRAP
Note:
See TracChangeset
for help on using the changeset viewer.