Changeset 77280 in vbox
- Timestamp:
- Feb 12, 2019 3:09:41 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 128795
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/HMSVMAll.cpp
r76993 r77280 51 51 * @param pCtx Pointer to the guest-CPU context. 52 52 */ 53 int hm SvmEmulateMovTpr(PVMCPU pVCpu)53 int hmEmulateSvmMovTpr(PVMCPU pVCpu) 54 54 { 55 55 PCPUMCTX pCtx = &pVCpu->cpum.GstCtx; … … 234 234 if (pVM->hm.s.fTprPatchingAllowed) 235 235 { 236 int rc = hm SvmEmulateMovTpr(pVCpu);236 int rc = hmEmulateSvmMovTpr(pVCpu); 237 237 if (RT_SUCCESS(rc)) 238 238 return VINF_SUCCESS; -
trunk/src/VBox/VMM/include/HMInternal.h
r76678 r77280 1114 1114 #endif /* IN_RING0 */ 1115 1115 1116 int hm SvmEmulateMovTpr(PVMCPU pVCpu);1116 int hmEmulateSvmMovTpr(PVMCPU pVCpu); 1117 1117 1118 1118 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.