VirtualBox

Changeset 45984 in vbox for trunk/src/VBox/Runtime/common


Ignore:
Timestamp:
May 11, 2013 12:46:30 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
85642
Message:

RTDbgCfg: Debugging configuration, like symbol search paths and such.

Location:
trunk/src/VBox/Runtime/common/dbg
Files:
1 added
1 edited

Legend:

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

    r44529 r45984  
    364364
    365365
    366 RTDECL(int) RTDbgModCreateDeferred(PRTDBGMOD phDbgMod, const char *pszFilename, const char *pszName,
    367                                    RTUINTPTR cb, uint32_t fFlags)
    368 {
    369     NOREF(phDbgMod); NOREF(pszFilename); NOREF(pszName); NOREF(cb); NOREF(fFlags);
    370     return VERR_NOT_IMPLEMENTED;
    371 }
    372 RT_EXPORT_SYMBOL(RTDbgModCreateDeferred);
    373 
    374 
    375 RTDECL(int) RTDbgModCreateFromImage(PRTDBGMOD phDbgMod, const char *pszFilename, const char *pszName, uint32_t fFlags)
     366RTDECL(int) RTDbgModCreateFromImage(PRTDBGMOD phDbgMod, const char *pszFilename, const char *pszName, RTDBGCFG hDbgCfg)
    376367{
    377368    /*
     
    383374    AssertReturn(*pszFilename, VERR_INVALID_PARAMETER);
    384375    AssertPtrNullReturn(pszName, VERR_INVALID_POINTER);
    385     AssertReturn(fFlags == 0, VERR_INVALID_PARAMETER);
    386376
    387377    int rc = rtDbgModLazyInit();
     
    505495
    506496
     497
    507498RTDECL(int) RTDbgModCreateFromMap(PRTDBGMOD phDbgMod, const char *pszFilename, const char *pszName,
    508                                   RTUINTPTR uSubtrahend, uint32_t fFlags)
     499                                  RTUINTPTR uSubtrahend, RTDBGCFG hDbgCfg)
    509500{
    510501    /*
     
    516507    AssertReturn(*pszFilename, VERR_INVALID_PARAMETER);
    517508    AssertPtrNullReturn(pszName, VERR_INVALID_POINTER);
    518     AssertReturn(fFlags == 0, VERR_INVALID_PARAMETER);
    519509    AssertReturn(uSubtrahend == 0, VERR_NOT_IMPLEMENTED); /** @todo implement uSubtrahend. */
    520510
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