Changeset 62877 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Aug 2, 2016 3:05:45 PM (8 years ago)
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r62675 r62877 131 131 PSUPQUERYFUNCS g_pSupFunctions; 132 132 133 /** VMMR0 Load Address. */134 static RTR0PTR g_pvVMMR0 = NIL_RTR0PTR;135 133 /** PAGE_ALLOC_EX sans kernel mapping support indicator. */ 136 134 static bool g_fSupportsPageAllocNoKernel = true; … … 143 141 *********************************************************************************************************************************/ 144 142 static int supInitFake(PSUPDRVSESSION *ppSession); 145 static int supLoadModule(const char *pszFilename, const char *pszModule, const char *pszSrvReqHandler, void **ppvImageBase);146 static DECLCALLBACK(int) supLoadModuleResolveImport(RTLDRMOD hLdrMod, const char *pszModule, const char *pszSymbol, unsigned uSymbol, RTUINTPTR *pValue, void *pvUser);147 143 148 144 -
trunk/src/VBox/HostDrivers/Support/SUPR3HardenedVerify.cpp
r62675 r62877 642 642 static int supR3HardenedVerifyFileInternal(int iFile, bool fFatal, bool fLeaveFileOpen, bool fVerifyAll) 643 643 { 644 #ifndef RT_OS_WINDOWS 645 RT_NOREF1(fVerifyAll); 646 #endif 644 647 PCSUPINSTFILE pFile = &g_aSupInstallFiles[iFile]; 645 648 PSUPVERIFIEDFILE pVerified = &g_aSupVerifiedFiles[iFile]; -
trunk/src/VBox/HostDrivers/Support/linux/SUPLib-linux.cpp
r62490 r62877 76 76 int suplibOsInit(PSUPLIBDATA pThis, bool fPreInited, bool fUnrestricted, SUPINITOP *penmWhat, PRTERRINFO pErrInfo) 77 77 { 78 RT_NOREF2(penmWhat, pErrInfo); 79 78 80 /* 79 81 * Nothing to do if pre-inited.
Note:
See TracChangeset
for help on using the changeset viewer.