Changeset 91688 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Oct 12, 2021 12:21:10 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 147416
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/NEMR3Native-win.cpp
r91679 r91688 178 178 /** Info about the VidGetPartitionProperty I/O control interface. */ 179 179 static NEMWINIOCTL g_IoCtlGetPartitionProperty; 180 #if defined(NEM_WIN_WITH_RING0_RUNLOOP) || defined(LOG_ENABLED) 180 181 /** Info about the VidStartVirtualProcessor I/O control interface. */ 181 182 static NEMWINIOCTL g_IoCtlStartVirtualProcessor; … … 184 185 /** Info about the VidMessageSlotHandleAndGetNext I/O control interface. */ 185 186 static NEMWINIOCTL g_IoCtlMessageSlotHandleAndGetNext; 187 #endif 186 188 #ifdef LOG_ENABLED 187 189 /** Info about the VidMessageSlotMap I/O control interface - for logging. */ … … 843 845 } 844 846 847 #if defined(NEM_WIN_WITH_RING0_RUNLOOP) || defined(LOG_ENABLED) 845 848 846 849 /** … … 944 947 } 945 948 949 #endif /* defined(NEM_WIN_WITH_RING0_RUNLOOP) || defined(LOG_ENABLED) */ 946 950 947 951 #ifdef LOG_ENABLED … … 1016 1020 1017 1021 int rcRet = VINF_SUCCESS; 1022 #if defined(NEM_WIN_WITH_RING0_RUNLOOP) || defined(LOG_ENABLED) 1023 1018 1024 /* VidStartVirtualProcessor */ 1019 1025 *g_ppfnVidNtDeviceIoControlFile = nemR3WinIoctlDetector_StartVirtualProcessor; … … 1052 1058 g_IoCtlMessageSlotHandleAndGetNext.cbOutput)); 1053 1059 1060 #endif /* defined(NEM_WIN_WITH_RING0_RUNLOOP) || defined(LOG_ENABLED) */ 1054 1061 #ifdef LOG_ENABLED 1055 1062 /* The following are only for logging: */ … … 1098 1105 pVM->nem.s.IoCtlGetHvPartitionId = g_IoCtlGetHvPartitionId; 1099 1106 pVM->nem.s.IoCtlGetPartitionProperty = g_IoCtlGetPartitionProperty; 1107 #ifdef NEM_WIN_WITH_RING0_RUNLOOP 1100 1108 pVM->nem.s.IoCtlStartVirtualProcessor = g_IoCtlStartVirtualProcessor; 1101 1109 pVM->nem.s.IoCtlStopVirtualProcessor = g_IoCtlStopVirtualProcessor; 1102 1110 pVM->nem.s.IoCtlMessageSlotHandleAndGetNext = g_IoCtlMessageSlotHandleAndGetNext; 1111 #endif 1103 1112 return rcRet; 1104 1113 }
Note:
See TracChangeset
for help on using the changeset viewer.