Changeset 70945 in vbox for trunk/src/VBox/VMM/include
- Timestamp:
- Feb 9, 2018 11:45:56 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 120788
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/NEMInternal.h
r70944 r70945 46 46 bool fEnabled; 47 47 #ifdef RT_OS_WINDOWS 48 /** Set if we've created the EMTs. */ 49 bool fCreatedEmts; 48 50 /** WHvRunVpExitReasonX64Cpuid is supported. */ 49 51 bool fExtendedMsrExit; … … 54 56 /** The reported CPU vendor. */ 55 57 CPUMCPUVENDOR enmCpuVendor; 56 /** Explicit padding. */57 uint 32_t u32Padding1;58 /** Cache line flush size as a power of two. */ 59 uint8_t cCacheLineFlushShift; 58 60 /** The result of WHvCapabilityCodeProcessorFeatures. */ 59 61 union … … 66 68 # endif 67 69 } uCpuFeatures; 70 71 /** The partition handle. */ 72 # ifdef _WINHVAPIDEFS_H_ 73 WHV_PARTITION_HANDLE 74 # else 75 RTHCUINTPTR 76 # endif 77 hPartition; 78 /** The device handle for the partition, for use with Vid APIs or direct I/O 79 * controls. */ 80 RTR3PTR hPartitionDevice; 68 81 #endif 69 82 … … 97 110 #ifdef IN_RING3 98 111 int nemR3NativeInit(PVM pVM, bool fFallback, bool fForced); 112 int nemR3NativeInitAfterCPUM(PVM pVM); 99 113 int nemR3NativeInitCompleted(PVM pVM, VMINITCOMPLETED enmWhat); 100 114 int nemR3NativeTerm(PVM pVM);
Note:
See TracChangeset
for help on using the changeset viewer.