Changeset 70885 in vbox for trunk/include
- Timestamp:
- Feb 6, 2018 4:29:41 PM (7 years ago)
- Location:
- trunk/include/VBox/vmm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/vm.h
r69107 r70885 1022 1022 * This is never set on 64-bit hosts, only 32-bit hosts requires it. */ 1023 1023 bool fHMNeedRawModeCtx; 1024 /** NEM (native execution manager) active flag. 1025 * This means we'll use NEM instead of HM when running guest code. */ 1026 bool fNEMActive; 1024 1027 /** Set when this VM is the master FT node. 1025 1028 * @todo This doesn't need to be here, FTM should store it in it's own … … 1033 1036 1034 1037 /** Alignment padding. */ 1035 uint8_t uPadding1[ 2];1038 uint8_t uPadding1[1]; 1036 1039 1037 1040 /** @name Debugging -
trunk/include/VBox/vmm/vm.mac
r69107 r70885 111 111 .fHMEnabledFixed resb 1 112 112 .fHMNeedRawModeCtx resb 1 113 .fNEMActive resb 1 113 114 .fFaultTolerantMaster resb 1 114 115 .fUseLargePages resb 1 115 116 116 .uPadding1 resb 2117 .uPadding1 resb 1 117 118 118 119 .hTraceBufRC RTRCPTR_RES 1
Note:
See TracChangeset
for help on using the changeset viewer.