Changeset 85546 in vbox for trunk/src/VBox/HostDrivers/Support
- Timestamp:
- Jul 30, 2020 9:07:13 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPLibLdr.cpp
r85543 r85546 359 359 RT_NOREF(hLdrMod); 360 360 361 Log2(("supLoadModuleCompileSegmentsCB: %RTptr/%RTptr LB %RTptr/%RTptr prot %#x %s\n", 362 pSeg->LinkAddress, pSeg->RVA, pSeg->cbMapped, pSeg->cb, pSeg->fProt, pSeg->pszName)); 363 361 364 /* Ignore segments not part of the loaded image. */ 362 365 if (pSeg->RVA == NIL_RTLDRADDR || pSeg->cbMapped == 0) 366 { 367 Log2(("supLoadModuleCompileSegmentsCB: -> skipped\n")); 363 368 return VINF_SUCCESS; 369 } 364 370 365 371 /* We currently ASSUME that all relevant segments are in ascending RVA order. */ … … 374 380 AssertReturn(pSeg->RVA < _1G, VERR_INTERNAL_ERROR_3); 375 381 uint32_t uRvaSeg = (uint32_t)pSeg->RVA; 376 Log2(("supLoadModuleCompileSegmentsCB: %RTptr/%RTptr LB %RTptr/%RTptr prot %#x %s\n",377 pSeg->LinkAddress, pSeg->RVA, pSeg->cbMapped, pSeg->cb, pSeg->fProt, pSeg->pszName));378 382 379 383 /*
Note:
See TracChangeset
for help on using the changeset viewer.