Changeset 59424 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jan 20, 2016 7:20:11 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 105150
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/initterm.cpp
r59418 r59424 248 248 # ifdef VBOX_WITH_AUTO_COM_REG_UPDATE 249 249 /* 250 * First time we're called in a process, we refresh the VBox COM registrations. 250 * First time we're called in a process, we refresh the VBox COM 251 * registrations. Use a global mutex to prevent updating when there are 252 * API users already active, as that could lead to a bit of a mess. 251 253 */ 252 if (fAutoRegUpdate && gCOMMainThread == NIL_RTTHREAD) 253 { 254 char szPath[RTPATH_MAX]; 255 int vrc = RTPathAppPrivateArch(szPath, sizeof(szPath)); 256 if (RT_SUCCESS(vrc)) 257 { 254 if ( fAutoRegUpdate 255 && gCOMMainThread == NIL_RTTHREAD) 256 { 257 SetLastError(ERROR_SUCCESS); 258 HANDLE hLeakIt = CreateMutexW(NULL/*pSecAttr*/, FALSE, L"Global\\VirtualBoxComLazyRegistrationMutant"); 259 DWORD dwErr = GetLastError(); 260 AssertMsg(dwErr == ERROR_SUCCESS || dwErr == ERROR_ALREADY_EXISTS, ("%u\n", dwErr)); 261 if (dwErr == ERROR_SUCCESS) 262 { 263 char szPath[RTPATH_MAX]; 264 int vrc = RTPathAppPrivateArch(szPath, sizeof(szPath)); 265 if (RT_SUCCESS(vrc)) 258 266 # ifndef VBOX_IN_32_ON_64_MAIN_API 259 rc = RTPathAppend(szPath, sizeof(szPath),260 RT_MAKE_U64(((PKUSER_SHARED_DATA)MM_SHARED_USER_DATA_VA)->NtMinorVersion,261 ((PKUSER_SHARED_DATA)MM_SHARED_USER_DATA_VA)->NtMajorVersion)262 >= RT_MAKE_U64(1/*Lo*/,6/*Hi*/)263 ? "VBoxProxyStub.dll" : "VBoxProxyStubLegacy.dll");267 rc = RTPathAppend(szPath, sizeof(szPath), 268 RT_MAKE_U64(((PKUSER_SHARED_DATA)MM_SHARED_USER_DATA_VA)->NtMinorVersion, 269 ((PKUSER_SHARED_DATA)MM_SHARED_USER_DATA_VA)->NtMajorVersion) 270 >= RT_MAKE_U64(1/*Lo*/,6/*Hi*/) 271 ? "VBoxProxyStub.dll" : "VBoxProxyStubLegacy.dll"); 264 272 # else 265 rc = RTPathAppend(szPath, sizeof(szPath), "x86\\VBoxProxyStub-x86.dll");273 rc = RTPathAppend(szPath, sizeof(szPath), "x86\\VBoxProxyStub-x86.dll"); 266 274 # endif 267 }268 if (RT_SUCCESS(vrc))269 {270 RTLDRMOD hMod;271 vrc = RTLdrLoad(szPath, &hMod);272 275 if (RT_SUCCESS(vrc)) 273 276 { 274 union 277 RTLDRMOD hMod; 278 vrc = RTLdrLoad(szPath, &hMod); 279 if (RT_SUCCESS(vrc)) 275 280 { 276 void *pv; 277 DECLCALLBACKMEMBER(uint32_t, pfnRegUpdate)(void); 278 } u; 279 rc = RTLdrGetSymbol(hMod, "VbpsUpdateRegistrations", &u.pv); 280 if (RT_SUCCESS(rc)) 281 u.pfnRegUpdate(); 282 /* Just keep it loaded. */ 281 union 282 { 283 void *pv; 284 DECLCALLBACKMEMBER(uint32_t, pfnRegUpdate)(void); 285 } u; 286 rc = RTLdrGetSymbol(hMod, "VbpsUpdateRegistrations", &u.pv); 287 if (RT_SUCCESS(rc)) 288 u.pfnRegUpdate(); 289 /* Just keep it loaded. */ 290 } 283 291 } 284 292 } 293 Assert(hLeakIt != NULL); NOREF(hLeakIt); 285 294 } 286 295 # endif
Note:
See TracChangeset
for help on using the changeset viewer.