- Timestamp:
- Nov 11, 2024 3:26:11 PM (6 months ago)
- svn:sync-xref-src-repo-rev:
- 165856
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/win/SUPDrv-win.cpp
r106925 r106930 1195 1195 if (RT_SUCCESS(rc)) 1196 1196 { 1197 # ifdef VBOXDRV_WITH_SID_TO_UID_MAPPING1197 # ifdef VBOXDRV_WITH_SID_TO_UID_MAPPING 1198 1198 rc = supdrvNtUserIdMakeForSession(pSession); 1199 1199 if (RT_SUCCESS(rc)) 1200 # endif1200 # endif 1201 1201 rc = supdrvSessionHashTabInsert(pDevExt, pSession, (PSUPDRVSESSION *)&pFileObj->FsContext, NULL); 1202 1202 supdrvSessionRelease(pSession); … … 1244 1244 if (RT_SUCCESS(rc)) 1245 1245 { 1246 # ifdef VBOXDRV_WITH_SID_TO_UID_MAPPING1246 # ifdef VBOXDRV_WITH_SID_TO_UID_MAPPING 1247 1247 rc = supdrvNtUserIdMakeForSession(pSession); 1248 1248 if (RT_SUCCESS(rc)) 1249 # endif1249 # endif 1250 1250 rc = supdrvSessionHashTabInsert(pDevExt, pSession, (PSUPDRVSESSION *)&pFileObj->FsContext, NULL); 1251 1251 supdrvSessionRelease(pSession); … … 2206 2206 2207 2207 # ifdef VBOX_WITH_MINIMAL_HARDENING 2208 /** 2209 * Performs pre-opening of .r0 image checks. 2210 * 2211 * When minimal hardening is enabled, we require the images loaded to be signed 2212 * by the build certificate, thus liminiting what we load to things we have 2208 /** 2209 * Performs pre-opening of .r0 image checks. 2210 * 2211 * When minimal hardening is enabled, we require the images loaded to be signed 2212 * by the build certificate, thus liminiting what we load to things we have 2213 2213 * built ourselves. 2214 2214 */ 2215 2215 static int supdrvOSLdrCheckBeforeOpen(PUNICODE_STRING pUniStrPath, HANDLE *phImage) 2216 2216 { 2217 /* 2217 /* 2218 2218 * Open the image file, denying write accesses. 2219 2219 */ -
trunk/src/VBox/VMM/VMMR0/VMMR0.def
r106922 r106930 45 45 IOMMmioResetRegion ; not-arm64 46 46 IOMMmioMapMmio2Page ; not-arm64 47 RTLogDefaultInstance 48 RTLogDefaultInstanceEx 49 RTLogGetDefaultInstanceEx 50 RTLogRelGetDefaultInstance 51 RTLogRelGetDefaultInstanceEx 52 RTLogLogger 53 RTLogLoggerEx 54 RTLogLoggerExV 55 RTStrPrintf 56 RTTimeMilliTS 57 RTTraceBufAddMsgF 58 RTTraceBufAddPos 59 RTTraceBufAddPosMsgF 47 RTLogDefaultInstance 48 RTLogDefaultInstanceEx 49 RTLogGetDefaultInstanceEx 50 RTLogRelGetDefaultInstance 51 RTLogRelGetDefaultInstanceEx 52 RTLogLogger 53 RTLogLoggerEx 54 RTLogLoggerExV 55 RTStrPrintf 56 RTTimeMilliTS 57 RTTraceBufAddMsgF 58 RTTraceBufAddPos 59 RTTraceBufAddPosMsgF 60 60 TMTimerFromMilli ; not-arm64 61 61 TMTimerFromMicro ; not-arm64 … … 91 91 RTAssertShouldPanic 92 92 RTCrc32 ; not-arm64 93 RTOnceSlow 93 RTOnceSlow 94 94 RTTimeNanoTSLegacySyncInvarNoDelta ; not-arm64 95 95 RTTimeNanoTSLegacySyncInvarWithDelta ; not-arm64 … … 97 97 RTTimeNanoTSLFenceSyncInvarNoDelta ; not-arm64 98 98 RTTimeNanoTSLFenceSyncInvarWithDelta ; not-arm64 99 RTTimeNanoTSLFenceAsync ; not-arm64 99 RTTimeNanoTSLFenceAsync ; not-arm64 100 100 RTTimeSystemNanoTS 101 101 RTTimeNanoTS … … 105 105 ASMBitFirstSet ; not-arm64 106 106 ASMNopPause ; not-arm64 107 nocrt_memchr 108 nocrt_memcmp 109 nocrt_memcpy 110 memcpy=nocrt_memcpy 111 nocrt_memmove 112 nocrt_memset 113 memset=nocrt_memset 114 nocrt_strcpy 115 nocrt_strcmp 116 nocrt_strchr 117 nocrt_strlen 107 nocrt_memchr 108 nocrt_memcmp 109 nocrt_memcpy 110 memcpy=nocrt_memcpy 111 nocrt_memmove 112 nocrt_memset 113 memset=nocrt_memset 114 nocrt_strcpy 115 nocrt_strcmp 116 nocrt_strchr 117 nocrt_strlen 118 118
Note:
See TracChangeset
for help on using the changeset viewer.