From: Igor Kulaychuk Date: Sun, 9 Jul 2017 14:53:18 +0000 (+0300) Subject: Fix pending breakpoints X-Git-Tag: submit/tizen/20180620.071641~247 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c16928c563101aa9fbdbc4c06b58ef5527d52efd;p=sdk%2Ftools%2Fnetcoredbg.git Fix pending breakpoints --- diff --git a/src/debug/debugger/breakpoints.cpp b/src/debug/debugger/breakpoints.cpp index 2e7fe75..8507ad1 100644 --- a/src/debug/debugger/breakpoints.cpp +++ b/src/debug/debugger/breakpoints.cpp @@ -72,7 +72,7 @@ HRESULT PrintBreakpoint(ULONG32 id, std::string &output) else { ss << "bkpt={number=\"" << id << "\",type=\"breakpoint\",disp=\"keep\",enabled=\"y\"," - "warning=\"No executable code of the debugger’s target code type is associated with this line.\"}"; + "warning=\"No executable code of the debugger's target code type is associated with this line.\"}"; Status = S_FALSE; } output = ss.str(); @@ -215,6 +215,8 @@ HRESULT CreateBreakpointInProcess(ICorDebugProcess *pProcess, std::string filena IfFailRet(pProcess->EnumerateAppDomains(&domains)); Breakpoint bp; + bp.fullname = filename; + bp.linenum = linenum; ICorDebugAppDomain *curDomain; ULONG domainsFetched;