VirtualBox

Changeset 48693 in vbox


Ignore:
Timestamp:
Sep 26, 2013 12:18:23 AM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
89318
Message:

dbgmoddwarf.cpp: mach_kernel kludge.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/dbg/dbgmoddwarf.cpp

    r48398 r48693  
    38563856                                                       rtDwarfInfo_SelectName(pSubProgram->pszName, pSubProgram->pszLinkageName),
    38573857                                                       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                                }
    38593867                            }
    38603868                            else if (   pSubProgram->PcRange.uLowAddress  == 0 /* see with vmlinux */
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette