Changeset 73494 in vbox for trunk/src/VBox/Runtime/common/dbg/dbgmodldr.cpp
- Timestamp:
- Aug 4, 2018 7:41:30 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 124121
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dbg/dbgmodldr.cpp
r73412 r73494 61 61 typedef RTDBGMODLDR *PRTDBGMODLDR; 62 62 63 64 65 /** @interface_method_impl{RTDBGMODVTDBG,pfnUnwindFrame} */ 66 static DECLCALLBACK(int) rtDbgModLdr_UnwindFrame(PRTDBGMODINT pMod, RTDBGSEGIDX iSeg, RTUINTPTR off, PRTDBGUNWINDSTATE pState) 67 { 68 PRTDBGMODLDR pThis = (PRTDBGMODLDR)pMod->pvImgPriv; 69 Assert(pThis->u32Magic == RTDBGMODLDR_MAGIC); 70 return RTLdrUnwindFrame(pThis->hLdrMod, NULL, iSeg, off, pState); 71 } 63 72 64 73 … … 241 250 /*.pfnGetArch = */ rtDbgModLdr_GetArch, 242 251 /*.pfnQueryProp = */ rtDbgModLdr_QueryProp, 252 /*.pfnUnwindFrame = */ rtDbgModLdr_UnwindFrame, 243 253 244 254 /*.u32EndMagic = */ RTDBGMODVTIMG_MAGIC
Note:
See TracChangeset
for help on using the changeset viewer.