Changeset 74790 in vbox for trunk/src/VBox/VMM/VMMRC
- Timestamp:
- Oct 12, 2018 10:42:58 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 125734
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMRC/TRPMRCHandlers.cpp
r74789 r74790 184 184 TMTimerPollVoid(pVM, pVCpu); 185 185 Log2(("TMTimerPoll at %08RX32 - VM_FF_TM_VIRTUAL_SYNC=%d VM_FF_TM_VIRTUAL_SYNC=%d\n", pRegFrame->eip, 186 VM_FF_IS_ PENDING(pVM, VM_FF_TM_VIRTUAL_SYNC), VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_TIMER)));186 VM_FF_IS_SET(pVM, VM_FF_TM_VIRTUAL_SYNC), VMCPU_FF_IS_SET(pVCpu, VMCPU_FF_TIMER))); 187 187 } 188 188 } … … 223 223 { 224 224 /* The out of memory condition naturally outranks the others. */ 225 if (RT_UNLIKELY(VM_FF_IS_ PENDING(pVM, VM_FF_PGM_NO_MEMORY)))225 if (RT_UNLIKELY(VM_FF_IS_SET(pVM, VM_FF_PGM_NO_MEMORY))) 226 226 rc = VINF_EM_NO_MEMORY; 227 227 else … … 244 244 rc = VINF_EM_RAW_TIMER_PENDING; 245 245 /* The Virtual Sync clock has stopped. */ 246 else if (VM_FF_IS_ PENDING(pVM, VM_FF_TM_VIRTUAL_SYNC))246 else if (VM_FF_IS_SET(pVM, VM_FF_TM_VIRTUAL_SYNC)) 247 247 rc = VINF_EM_RAW_TO_R3; 248 248 /* DMA work pending? */ 249 else if (VM_FF_IS_ PENDING(pVM, VM_FF_PDM_DMA))249 else if (VM_FF_IS_SET(pVM, VM_FF_PDM_DMA)) 250 250 rc = VINF_EM_RAW_TO_R3; 251 251 /* Pending request packets might contain actions that need immediate
Note:
See TracChangeset
for help on using the changeset viewer.