Changeset 13503 in vbox
- Timestamp:
- Oct 22, 2008 4:55:52 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 38330
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPR3HardenedMain.cpp
r13458 r13503 434 434 /* 435 435 * Now try resolve and call the TrustedError entry point if we can 436 * find it. 437 */ 438 PFNSUPTRUSTEDERROR pfnTrustedError = supR3HardenedMainGetTrustedError(g_pszSupLibHardenedProgName); 439 if (pfnTrustedError) 440 pfnTrustedError(pszWhere, enmWhat, rc, pszMsgFmt, va); 436 * find it. We'll fork before we attempt this because that way the 437 * session management in main will see us exiting immediately (if 438 * it's invovled with us). 439 */ 440 #if !defined(RT_OS_WINDOWS) && !defined(RT_OS_OS2) 441 int pid = fork(); 442 if (pid <= 0) 443 #endif 444 { 445 PFNSUPTRUSTEDERROR pfnTrustedError = supR3HardenedMainGetTrustedError(g_pszSupLibHardenedProgName); 446 if (pfnTrustedError) 447 pfnTrustedError(pszWhere, enmWhat, rc, pszMsgFmt, va); 448 } 441 449 442 450 /*
Note:
See TracChangeset
for help on using the changeset viewer.