Changeset 47326 in vbox for trunk/src/VBox/VMM/VMMAll/EMAll.cpp
- Timestamp:
- Jul 22, 2013 9:46:43 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r46420 r47326 181 181 * @param rcx The content of RCX. 182 182 * @param rdx The content of RDX. 183 */ 184 VMM_INT_DECL(int) EMMonitorWaitPrepare(PVMCPU pVCpu, uint64_t rax, uint64_t rcx, uint64_t rdx) 183 * @param GCPhys The physical address corresponding to rax. 184 */ 185 VMM_INT_DECL(int) EMMonitorWaitPrepare(PVMCPU pVCpu, uint64_t rax, uint64_t rcx, uint64_t rdx, RTGCPHYS GCPhys) 185 186 { 186 187 pVCpu->em.s.MWait.uMonitorRAX = rax; … … 188 189 pVCpu->em.s.MWait.uMonitorRDX = rdx; 189 190 pVCpu->em.s.MWait.fWait |= EMMWAIT_FLAG_MONITOR_ACTIVE; 191 /** @todo Make use of GCPhys. */ 190 192 /** @todo Complete MONITOR implementation. */ 191 193 return VINF_SUCCESS; … … 1372 1374 return VERR_EM_INTERPRETER; /* not supported */ 1373 1375 1374 EMMonitorWaitPrepare(pVCpu, pRegFrame->rax, pRegFrame->rcx, pRegFrame->rdx );1376 EMMonitorWaitPrepare(pVCpu, pRegFrame->rax, pRegFrame->rcx, pRegFrame->rdx, NIL_RTGCPHYS); 1375 1377 return VINF_SUCCESS; 1376 1378 }
Note:
See TracChangeset
for help on using the changeset viewer.