Changeset 85506 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Jul 29, 2020 10:07:17 AM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139572
- Location:
- trunk/src/VBox/HostDrivers/Support
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLibLdr.cpp
r85121 r85506 683 683 684 684 685 SUPR3DECL(int) SUPR3LoadVMM(const char *pszFilename )685 SUPR3DECL(int) SUPR3LoadVMM(const char *pszFilename, PRTERRINFO pErrInfo) 686 686 { 687 687 void *pvImageBase; 688 return SUPR3LoadModule(pszFilename, "VMMR0.r0", &pvImageBase, NULL /*pErrInfo*/);688 return SUPR3LoadModule(pszFilename, "VMMR0.r0", &pvImageBase, pErrInfo); 689 689 } 690 690 -
trunk/src/VBox/HostDrivers/Support/testcase/tstInt.cpp
r82968 r85506 77 77 * Load VMM code. 78 78 */ 79 rc = SUPR3LoadVMM(szAbsFile); 79 RTERRINFOSTATIC ErrInfo; 80 rc = SUPR3LoadVMM(szAbsFile, RTErrInfoInitStatic(&ErrInfo)); 80 81 if (RT_SUCCESS(rc)) 81 82 { … … 209 210 else 210 211 { 211 RTPrintf("tstInt: SUPR3LoadVMM failed with rc=%Rrc \n", rc);212 RTPrintf("tstInt: SUPR3LoadVMM failed with rc=%Rrc%#RTeim\n", rc, &ErrInfo.Core); 212 213 rcRet++; 213 214 }
Note:
See TracChangeset
for help on using the changeset viewer.