Changeset 66287 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Mar 28, 2017 10:20:27 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLibLdr.cpp
r62490 r66287 546 546 ) 547 547 { 548 LogRel(("SUP: Loaded %s (%s) at %# p - ModuleInit at %RTptr and ModuleTerm at %RTptr%s\n",548 LogRel(("SUP: Loaded %s (%s) at %#RKv - ModuleInit at %RKv and ModuleTerm at %RKvr%s\n", 549 549 pszModule, pszFilename, OpenReq.u.Out.pvImageBase, ModuleInit, ModuleTerm, 550 550 OpenReq.u.Out.fNativeLoader ? " using the native ring-0 loader" : "")); … … 552 552 { 553 553 g_pvVMMR0 = OpenReq.u.Out.pvImageBase; 554 LogRel(("SUP: VMMR0EntryEx located at %R Tptr and VMMR0EntryFast at %RTptr\n", VMMR0EntryEx, VMMR0EntryFast));554 LogRel(("SUP: VMMR0EntryEx located at %RKv and VMMR0EntryFast at %RKv\n", VMMR0EntryEx, VMMR0EntryFast)); 555 555 } 556 556 #ifdef RT_OS_WINDOWS 557 LogRel(("SUP: windbg> .reload /f %s=%# p\n", pszFilename, OpenReq.u.Out.pvImageBase));557 LogRel(("SUP: windbg> .reload /f %s=%#RKv\n", pszFilename, OpenReq.u.Out.pvImageBase)); 558 558 #endif 559 559 … … 610 610 if (fIsVMMR0) 611 611 g_pvVMMR0 = OpenReq.u.Out.pvImageBase; 612 LogRel(("SUP: Opened %s (%s) at %# p%s.\n", pszModule, pszFilename, OpenReq.u.Out.pvImageBase,612 LogRel(("SUP: Opened %s (%s) at %#RKv%s.\n", pszModule, pszFilename, OpenReq.u.Out.pvImageBase, 613 613 OpenReq.u.Out.fNativeLoader ? " loaded by the native ring-0 loader" : "")); 614 614 #ifdef RT_OS_WINDOWS 615 LogRel(("SUP: windbg> .reload /f %s=%# p\n", pszFilename, OpenReq.u.Out.pvImageBase));615 LogRel(("SUP: windbg> .reload /f %s=%#RKv\n", pszFilename, OpenReq.u.Out.pvImageBase)); 616 616 #endif 617 617 }
Note:
See TracChangeset
for help on using the changeset viewer.