VirtualBox

Ignore:
Timestamp:
Sep 18, 2012 3:37:52 PM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
80813
Message:

HostDrivers/SUPLib: error logging.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/SUPLib.cpp

    r41454 r43356  
    15791579        rc = supLoadModule(pszFilename, pszModule, NULL, ppvImageBase);
    15801580        if (RT_FAILURE(rc))
    1581             RTErrInfoSetF(pErrInfo, rc, "supLoadModule returned %Rrc", rc);
     1581            RTErrInfoSetF(pErrInfo, rc, "SUPR3LoadModule: supLoadModule returned %Rrc", rc);
    15821582    }
    15831583    return rc;
     
    18271827    rc = RTLdrOpen(pszFilename, 0, RTLDRARCH_HOST, &hLdrMod);
    18281828    if (!RT_SUCCESS(rc))
     1829    {
     1830        LogRel(("SUP: RTLdrOpen failed for %s (%s)\n", pszModule, pszFilename, rc));
    18291831        return rc;
     1832    }
    18301833
    18311834    SUPLDRCALCSIZEARGS CalcArgs;
     
    19721975                                if (RT_SUCCESS(rc))
    19731976                                    rc = pLoadReq->Hdr.rc;
     1977                                else
     1978                                    LogRel(("SUP: SUP_IOCTL_LDR_LOAD ioctl for %s (%s) failed rc=%Rrc\n", pszModule, pszFileName, rc));
    19741979                            }
    19751980                            else
     
    19962001                                return VINF_SUCCESS;
    19972002                            }
     2003                            else
     2004                                LogRel(("SUP: Loading failed for %s (%s) rc=%Rrc\n", pszModule, pszFilename, rc));
    19982005                        }
     2006                        else
     2007                            LogRel(("SUP: RTLdrEnumSymbols failed for %s (%s) rc=%Rrc\n", pszModule, pszFilename, rc));
    19992008                    }
     2009                    else
     2010                        LogRel(("SUP: Failed to get entry points for %s (%s) rc=%Rrc\n", pszModule, pszFilename, rc));
    20002011                }
     2012                else
     2013                    LogRel(("SUP: RTLdrGetBits failed for %s (%s). rc=%Rrc\n", pszModule, pszFilename, rc));
    20012014                RTMemTmpFree(pLoadReq);
    20022015            }
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette