Changeset 77382 in vbox
- Timestamp:
- Feb 20, 2019 1:44:22 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 128933
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/IEMAll.cpp
r77381 r77382 14401 14401 * The run loop. We limit ourselves to 4096 instructions right now. 14402 14402 */ 14403 uint32_t cMaxInstructionsGccStupidity = cMaxInstructions; 14403 14404 PVM pVM = pVCpu->CTX_SUFF(pVM); 14404 14405 for (;;) … … 14441 14442 && !VM_FF_IS_ANY_SET(pVM, VM_FF_ALL_MASK) )) 14442 14443 { 14443 if (cMaxInstructions -- > 0)14444 if (cMaxInstructionsGccStupidity-- > 0) 14444 14445 { 14445 14446 /* Poll timers every now an then according to the caller's specs. */ 14446 if ( (cMaxInstructions & cPollRate) != 014447 if ( (cMaxInstructionsGccStupidity & cPollRate) != 0 14447 14448 || !TMTimerPollBool(pVM, pVCpu)) 14448 14449 {
Note:
See TracChangeset
for help on using the changeset viewer.