Changeset 79315 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Jun 25, 2019 5:32:51 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/cpum.h
r79194 r79315 2355 2355 } 2356 2356 2357 /** 2358 * Returns whether the guest has an active, current VMCS. 2359 * 2360 * @returns @c true if the guest has an active, current VMCS, @c false otherwise. 2361 * @param pVCpu The cross context virtual CPU structure of the calling EMT. 2362 * @param pCtx Pointer to the context. 2363 */ 2364 DECLINLINE(bool) CPUMIsGuestVmxCurrentVmcsValid(PCVMCPU pVCpu, PCCPUMCTX pCtx) 2365 { 2366 RT_NOREF(pVCpu); 2367 RTGCPHYS const GCPhysVmcs = pCtx->hwvirt.vmx.GCPhysVmcs; 2368 return RT_BOOL(GCPhysVmcs != NIL_RTGCPHYS); 2369 } 2370 2357 2371 # endif /* !IN_RC */ 2358 2372
Note:
See TracChangeset
for help on using the changeset viewer.