Changeset 78866 in vbox for trunk/src/VBox/VMM
- Timestamp:
- May 30, 2019 5:37:23 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 130978
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp
r78863 r78866 2823 2823 * @remarks This does -not- take into account the global-interrupt flag. 2824 2824 */ 2825 VMM_INT_DECL(bool) CPUMIsGuestSvmPhysIntrEnabled(P VMCPU pVCpu, PCCPUMCTX pCtx)2825 VMM_INT_DECL(bool) CPUMIsGuestSvmPhysIntrEnabled(PCVMCPU pVCpu, PCCPUMCTX pCtx) 2826 2826 { 2827 2827 /** @todo Optimization: Avoid this function call and use a pointer to the … … 2854 2854 * @param pCtx The guest-CPU context. 2855 2855 */ 2856 VMM_INT_DECL(bool) CPUMIsGuestSvmVirtIntrEnabled(P VMCPU pVCpu, PCCPUMCTX pCtx)2856 VMM_INT_DECL(bool) CPUMIsGuestSvmVirtIntrEnabled(PCVMCPU pVCpu, PCCPUMCTX pCtx) 2857 2857 { 2858 2858 #ifdef IN_RC … … 2968 2968 * @sa CPUMRemoveNestedGuestTscOffset. 2969 2969 */ 2970 VMM_INT_DECL(uint64_t) CPUMApplyNestedGuestTscOffset(P VMCPU pVCpu, uint64_t uTicks)2970 VMM_INT_DECL(uint64_t) CPUMApplyNestedGuestTscOffset(PCVMCPU pVCpu, uint64_t uTicks) 2971 2971 { 2972 2972 #ifndef IN_RC … … 3007 3007 * @sa CPUMApplyNestedGuestTscOffset. 3008 3008 */ 3009 VMM_INT_DECL(uint64_t) CPUMRemoveNestedGuestTscOffset(P VMCPU pVCpu, uint64_t uTicks)3009 VMM_INT_DECL(uint64_t) CPUMRemoveNestedGuestTscOffset(PCVMCPU pVCpu, uint64_t uTicks) 3010 3010 { 3011 3011 #ifndef IN_RC -
trunk/src/VBox/VMM/VMMAll/HMSVMAll.cpp
r78865 r78866 206 206 * @sa CPUMRemoveNestedGuestTscOffset, HMRemoveSvmNstGstTscOffset. 207 207 */ 208 VMM_INT_DECL(uint64_t) HMApplySvmNstGstTscOffset(P VMCPU pVCpu, uint64_t uTicks)208 VMM_INT_DECL(uint64_t) HMApplySvmNstGstTscOffset(PCVMCPU pVCpu, uint64_t uTicks) 209 209 { 210 210 PCCPUMCTX pCtx = &pVCpu->cpum.GstCtx; … … 230 230 * @sa CPUMApplyNestedGuestTscOffset, HMApplySvmNstGstTscOffset. 231 231 */ 232 VMM_INT_DECL(uint64_t) HMRemoveSvmNstGstTscOffset(P VMCPU pVCpu, uint64_t uTicks)232 VMM_INT_DECL(uint64_t) HMRemoveSvmNstGstTscOffset(PCVMCPU pVCpu, uint64_t uTicks) 233 233 { 234 234 PCCPUMCTX pCtx = &pVCpu->cpum.GstCtx;
Note:
See TracChangeset
for help on using the changeset viewer.