Changeset 43356 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Sep 18, 2012 3:37:52 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 80813
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r41454 r43356 1579 1579 rc = supLoadModule(pszFilename, pszModule, NULL, ppvImageBase); 1580 1580 if (RT_FAILURE(rc)) 1581 RTErrInfoSetF(pErrInfo, rc, " supLoadModule returned %Rrc", rc);1581 RTErrInfoSetF(pErrInfo, rc, "SUPR3LoadModule: supLoadModule returned %Rrc", rc); 1582 1582 } 1583 1583 return rc; … … 1827 1827 rc = RTLdrOpen(pszFilename, 0, RTLDRARCH_HOST, &hLdrMod); 1828 1828 if (!RT_SUCCESS(rc)) 1829 { 1830 LogRel(("SUP: RTLdrOpen failed for %s (%s)\n", pszModule, pszFilename, rc)); 1829 1831 return rc; 1832 } 1830 1833 1831 1834 SUPLDRCALCSIZEARGS CalcArgs; … … 1972 1975 if (RT_SUCCESS(rc)) 1973 1976 rc = pLoadReq->Hdr.rc; 1977 else 1978 LogRel(("SUP: SUP_IOCTL_LDR_LOAD ioctl for %s (%s) failed rc=%Rrc\n", pszModule, pszFileName, rc)); 1974 1979 } 1975 1980 else … … 1996 2001 return VINF_SUCCESS; 1997 2002 } 2003 else 2004 LogRel(("SUP: Loading failed for %s (%s) rc=%Rrc\n", pszModule, pszFilename, rc)); 1998 2005 } 2006 else 2007 LogRel(("SUP: RTLdrEnumSymbols failed for %s (%s) rc=%Rrc\n", pszModule, pszFilename, rc)); 1999 2008 } 2009 else 2010 LogRel(("SUP: Failed to get entry points for %s (%s) rc=%Rrc\n", pszModule, pszFilename, rc)); 2000 2011 } 2012 else 2013 LogRel(("SUP: RTLdrGetBits failed for %s (%s). rc=%Rrc\n", pszModule, pszFilename, rc)); 2001 2014 RTMemTmpFree(pLoadReq); 2002 2015 }
Note:
See TracChangeset
for help on using the changeset viewer.