Changeset 4922 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Sep 20, 2007 11:55:56 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLib.cpp
r4898 r4922 1538 1538 if (RT_SUCCESS(rc)) 1539 1539 rc = RTLdrGetSymbolEx(hLdrMod, &pLoadReq->u.In.achImage[0], (uintptr_t)OpenReq.u.Out.pvImageBase, "VMMR0EntryEx", &VMMR0EntryEx); 1540 LogRel(("VMMR0.r0 module loaded. VMMR0EntryEx located at %RTptr.\n", VMMR0EntryEx));1541 1540 } 1542 1541 if (RT_SUCCESS(rc)) … … 1607 1606 ) 1608 1607 { 1608 LogRel(("SUP: Loaded %s (%s) at %#p - ModuleInit at %RTptr and ModuleTerm at %RTptr\n", pszModule, pszFilename, 1609 OpenReq.u.Out.pvImageBase, ModuleInit, ModuleTerm)); 1609 1610 if (fIsVMMR0) 1611 { 1610 1612 g_pvVMMR0 = OpenReq.u.Out.pvImageBase; 1613 LogRel(("SUP: VMMR0EntryEx located at %RTptr, VMMR0EntryFast at %RTptr and VMMR0EntryInt at %RTptr\n", 1614 VMMR0EntryEx, VMMR0EntryFast, VMMR0EntryInt)); 1615 } 1616 #ifdef RT_OS_WINDOWS 1617 LogRel(("SUP: windbg> .reload /f %s=%#p\n", pszFilename, OpenReq.u.Out.pvImageBase)); 1618 #endif 1619 1611 1620 RTMemTmpFree(pLoadReq); 1612 1621 RTLdrClose(hLdrMod); … … 1624 1633 } 1625 1634 } 1626 else if (RT_SUCCESS(rc) && fIsVMMR0) 1627 g_pvVMMR0 = OpenReq.u.Out.pvImageBase; 1635 else if (RT_SUCCESS(rc)) 1636 { 1637 if (fIsVMMR0) 1638 g_pvVMMR0 = OpenReq.u.Out.pvImageBase; 1639 LogRel(("SUP: Opened %s (%s) at %#p.\n", pszModule, pszFilename, OpenReq.u.Out.pvImageBase)); 1640 #ifdef RT_OS_WINDOWS 1641 LogRel(("SUP: windbg> .reload /f %s=%#p\n", pszFilename, OpenReq.u.Out.pvImageBase)); 1642 #endif 1643 } 1628 1644 } 1629 1645 RTLdrClose(hLdrMod);
Note:
See TracChangeset
for help on using the changeset viewer.