Changeset 92449 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Nov 16, 2021 10:37:10 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/nem.h
r92170 r92449 187 187 */ 188 188 VMM_INT_DECL(bool) NEMHCIsLongModeAllowed(PVMCC pVM); 189 VMM_INT_DECL(uint32_t) NEMHCGetFeatures(PVMCC pVM); 189 190 VMM_INT_DECL(int) NEMImportStateOnDemand(PVMCPUCC pVCpu, uint64_t fWhat); 191 192 /** @name NEM_FEAT_F_XXX - Features supported by the NEM backend 193 * @{ */ 194 /** NEM backend uses nested paging for the guest. */ 195 #define NEM_FEAT_F_NESTED_PAGING RT_BIT(0) 196 /** NEM backend uses full (unrestricted) guest execution. */ 197 #define NEM_FEAT_F_FULL_GST_EXEC RT_BIT(1) 198 /** NEM backend offers an xsave/xrstor interface. */ 199 #define NEM_FEAT_F_XSAVE_XRSTOR RT_BIT(2) 200 /** @} */ 190 201 191 202 VMM_INT_DECL(void) NEMHCNotifyHandlerPhysicalRegister(PVMCC pVM, PGMPHYSHANDLERKIND enmKind, RTGCPHYS GCPhys, RTGCPHYS cb);
Note:
See TracChangeset
for help on using the changeset viewer.