Changeset 21144 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Jul 2, 2009 8:07:39 AM (16 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/DBGF.cpp
r20664 r21144 297 297 int rc = VINF_SUCCESS; 298 298 299 if (VM_FF_TESTANDCLEAR(pVM, VM_FF_DBGF _BIT))299 if (VM_FF_TESTANDCLEAR(pVM, VM_FF_DBGF)) 300 300 { 301 301 PVMCPU pVCpu = VMMGetCpu(pVM); -
trunk/src/VBox/VMM/EM.cpp
r20871 r21144 3354 3354 * Postponed reset request. 3355 3355 */ 3356 if (VM_FF_TESTANDCLEAR(pVM, VM_FF_RESET _BIT))3356 if (VM_FF_TESTANDCLEAR(pVM, VM_FF_RESET)) 3357 3357 { 3358 3358 rc2 = VMR3Reset(pVM); -
trunk/src/VBox/VMM/PDM.cpp
r20874 r21144 1367 1367 return; 1368 1368 1369 if (VM_FF_TESTANDCLEAR(pVM, VM_FF_PDM_DMA _BIT))1369 if (VM_FF_TESTANDCLEAR(pVM, VM_FF_PDM_DMA)) 1370 1370 { 1371 1371 if (pVM->pdm.s.pDmac) -
trunk/src/VBox/VMM/VMEmt.cpp
r20961 r21144 184 184 Log(("vmR3EmulationThread: Dbg rc=%Rrc, VM state %d -> %d\n", rc, enmBefore, pVM->enmVMState)); 185 185 } 186 else if (VM_FF_TESTANDCLEAR(pVM, VM_FF_RESET _BIT))186 else if (VM_FF_TESTANDCLEAR(pVM, VM_FF_RESET)) 187 187 { 188 188 /* -
trunk/src/VBox/VMM/VMMR0/HWSVMR0.cpp
r21001 r21144 429 429 if (!TRPMHasTrap(pVCpu)) 430 430 { 431 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_INTERRUPT_NMI _BIT))431 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_INTERRUPT_NMI)) 432 432 { 433 433 SVM_EVENT Event; … … 1069 1069 1070 1070 /* Check for tlb shootdown flushes. */ 1071 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_TLB_FLUSH _BIT))1071 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_TLB_FLUSH)) 1072 1072 pVCpu->hwaccm.s.fForceTLBFlush = true; 1073 1073 -
trunk/src/VBox/VMM/VMMR0/HWVMXR0.cpp
r21001 r21144 757 757 if (!TRPMHasTrap(pVCpu)) 758 758 { 759 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_INTERRUPT_NMI _BIT))759 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_INTERRUPT_NMI)) 760 760 { 761 761 RTGCUINTPTR intInfo; … … 1871 1871 1872 1872 /* Check for tlb shootdown flushes. */ 1873 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_TLB_FLUSH _BIT))1873 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_TLB_FLUSH)) 1874 1874 pVCpu->hwaccm.s.fForceTLBFlush = true; 1875 1875 … … 1936 1936 1937 1937 /* Check for tlb shootdown flushes. */ 1938 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_TLB_FLUSH _BIT))1938 if (VMCPU_FF_TESTANDCLEAR(pVCpu, VMCPU_FF_TLB_FLUSH)) 1939 1939 pVCpu->hwaccm.s.fForceTLBFlush = true; 1940 1940
Note:
See TracChangeset
for help on using the changeset viewer.