Changeset 90570 in vbox for trunk/src/VBox/VMM/VMMAll
- Timestamp:
- Aug 7, 2021 1:01:04 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PDMAllCritSectRw.cpp
r90486 r90570 650 650 LogFlow(("PDMCritSectRwLeaveShared: [%d]=%p => R3 c=%d (%#llx)\n", i, pThis, c, u64State)); 651 651 AssertFatal(i < RT_ELEMENTS(pVCpu->pdm.s.apQueuedCritSectRwShrdLeaves)); 652 /** @todo This doesn't work any more for devices. */ 653 pVCpu->pdm.s.apQueuedCritSectRwShrdLeaves[i] = MMHyperCCToR3(pVM, pThis); 652 pVCpu->pdm.s.apQueuedCritSectRwShrdLeaves[i] = pThis->s.pSelfR3; 654 653 VMCPU_FF_SET(pVCpu, VMCPU_FF_PDM_CRITSECT); 655 654 VMCPU_FF_SET(pVCpu, VMCPU_FF_TO_R3); … … 1255 1254 LogFlow(("PDMCritSectRwLeaveShared: [%d]=%p => R3\n", i, pThis)); 1256 1255 AssertFatal(i < RT_ELEMENTS(pVCpu->pdm.s.apQueuedCritSectRwExclLeaves)); 1257 /** @todo This doesn't work anymore for devices. */ 1258 pVCpu->pdm.s.apQueuedCritSectRwExclLeaves[i] = MMHyperCCToR3(pVM, pThis); 1256 pVCpu->pdm.s.apQueuedCritSectRwExclLeaves[i] = pThis->s.pSelfR3; 1259 1257 VMCPU_FF_SET(pVCpu, VMCPU_FF_PDM_CRITSECT); 1260 1258 VMCPU_FF_SET(pVCpu, VMCPU_FF_TO_R3);
Note:
See TracChangeset
for help on using the changeset viewer.