Changeset 48693 in vbox
- Timestamp:
- Sep 26, 2013 12:18:23 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 89318
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dbg/dbgmoddwarf.cpp
r48398 r48693 3856 3856 rtDwarfInfo_SelectName(pSubProgram->pszName, pSubProgram->pszLinkageName), 3857 3857 iSeg, offSeg, cb, 0 /*fFlags*/, NULL /*piOrdinal*/); 3858 AssertMsg(RT_SUCCESS(rc) || rc == VERR_DBG_DUPLICATE_SYMBOL, ("%Rrc\n", rc)); 3858 if (RT_FAILURE(rc)) 3859 { 3860 if ( rc == VERR_DBG_DUPLICATE_SYMBOL 3861 || rc == VERR_DBG_ADDRESS_CONFLICT /** @todo figure why this happens with 10.6.8 mach_kernel, 32-bit. */ 3862 ) 3863 rc = VINF_SUCCESS; 3864 else 3865 AssertMsgFailed(("%Rrc\n", rc)); 3866 } 3859 3867 } 3860 3868 else if ( pSubProgram->PcRange.uLowAddress == 0 /* see with vmlinux */
Note:
See TracChangeset
for help on using the changeset viewer.