Changeset 41836 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jun 19, 2012 4:20:52 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 78662
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/EMHwaccm.cpp
r41801 r41836 390 390 * @param pVM Pointer to the VM. 391 391 * @param pVCpu Pointer to the VMCPU. 392 * @param pCtx The guest CPUM registercontext.392 * @param pCtx Pointer to the guest CPU context. 393 393 */ 394 394 static int emR3HwaccmForcedActions(PVM pVM, PVMCPU pVCpu, PCPUMCTX pCtx) -
trunk/src/VBox/VMM/VMMR3/PATM.cpp
r41801 r41836 3493 3493 * @returns VBox status code. 3494 3494 * @param pVM Pointer to the VM. 3495 * @param pCtx Guest context3495 * @param pCtx Pointer to the guest CPU context. 3496 3496 * 3497 3497 */ … … 6051 6051 * 6052 6052 * @returns VBox status code. 6053 * @param pVM Pointer to the VM.6054 * @param pCtx CPU context6055 * @param pPatch Patch record6056 * @param pPatchToGuestRec Patch to guest address record 6057 * @param pEip GC pointer of trapping instruction6053 * @param pVM Pointer to the VM. 6054 * @param pCtx Pointer to the guest CPU context. 6055 * @param pPatch Patch record. 6056 * @param pPatchToGuestRec Patch to guest address record. 6057 * @param pEip GC pointer of trapping instruction. 6058 6058 */ 6059 6059 static int patmR3HandleDirtyInstr(PVM pVM, PCPUMCTX pCtx, PPATMPATCHREC pPatch, PRECPATCHTOGUEST pPatchToGuestRec, RTRCPTR pEip) … … 6279 6279 * @returns VBox status code. 6280 6280 * @param pVM Pointer to the VM. 6281 * @param pCtx CPU context6282 * @param pEip GC pointer of trapping instruction 6283 * @param ppNewEip GC pointer to new instruction 6281 * @param pCtx Pointer to the guest CPU context. 6282 * @param pEip GC pointer of trapping instruction. 6283 * @param ppNewEip GC pointer to new instruction. 6284 6284 */ 6285 6285 VMMR3DECL(int) PATMR3HandleTrap(PVM pVM, PCPUMCTX pCtx, RTRCPTR pEip, RTGCPTR *ppNewEip) -
trunk/src/VBox/VMM/VMMR3/PGMPhys.cpp
r41802 r41836 3704 3704 * Sets the Address Gate 20 state. 3705 3705 * 3706 * @param pVCpu The VCPU to operate on.3706 * @param pVCpu Pointer to the VMCPU. 3707 3707 * @param fEnable True if the gate should be enabled. 3708 3708 * False if the gate should be disabled.
Note:
See TracChangeset
for help on using the changeset viewer.