Changeset 46266 in vbox for trunk/src/VBox/Runtime/common/dbg/dbgmoddeferred.cpp
- Timestamp:
- May 25, 2013 7:51:19 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dbg/dbgmoddeferred.cpp
r46164 r46266 467 467 468 468 469 /** @interface_method_impl{RTDBGMODVTIMG,pfnReadAt} */ 470 static DECLCALLBACK(int) rtDbgModDeferredImg_ReadAt(PRTDBGMODINT pMod, uint32_t iDbgInfoHint, RTFOFF off, void *pvBuf, size_t cb) 471 { 472 int rc = rtDbgModDeferredDoIt(pMod, false /*fForceRetry*/); 473 if (RT_SUCCESS(rc)) 474 rc = pMod->pImgVt->pfnReadAt(pMod, iDbgInfoHint, off, pvBuf, cb); 475 return rc; 476 } 477 478 469 479 /** @interface_method_impl{RTDBGMODVTIMG,pfnUnmapPart} */ 470 480 static DECLCALLBACK(int) rtDbgModDeferredImg_UnmapPart(PRTDBGMODINT pMod, size_t cb, void const **ppvMap) … … 580 590 /*.pfnMapPart = */ rtDbgModDeferredImg_MapPart, 581 591 /*.pfnUnmapPart = */ rtDbgModDeferredImg_UnmapPart, 592 /*.pfnReadAt = */ rtDbgModDeferredImg_ReadAt, 582 593 /*.pfnGetFormat = */ rtDbgModDeferredImg_GetFormat, 583 594 /*.pfnGetArch = */ rtDbgModDeferredImg_GetArch,
Note:
See TracChangeset
for help on using the changeset viewer.