summaryrefslogtreecommitdiffstats
path: root/lldb/tools/debugserver/source/DNBBreakpoint.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2011-01-19 07:54:15 +0000
committerGreg Clayton <gclayton@apple.com>2011-01-19 07:54:15 +0000
commite2d4f0d7ce91e12fd2eb1fdbccfb5d80947078d8 (patch)
tree50fbcef099c621e8aab794f33536c3d4482bedc8 /lldb/tools/debugserver/source/DNBBreakpoint.cpp
parent424cec97bdff219cd976dce85a405140069c57f9 (diff)
downloadbcm5719-llvm-e2d4f0d7ce91e12fd2eb1fdbccfb5d80947078d8.tar.gz
bcm5719-llvm-e2d4f0d7ce91e12fd2eb1fdbccfb5d80947078d8.zip
Took the timeout for a ClangUserExpression down from a 10 second timeout to
500 ms. Make MachThreadList more threadsafe. Added code to make sure the thread register state was properly flushed for x86_64. Fixed an missing return code for the current thread in the new thread suffix code. Improved debugserver logging. llvm-svn: 123815
Diffstat (limited to 'lldb/tools/debugserver/source/DNBBreakpoint.cpp')
-rw-r--r--lldb/tools/debugserver/source/DNBBreakpoint.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/tools/debugserver/source/DNBBreakpoint.cpp b/lldb/tools/debugserver/source/DNBBreakpoint.cpp
index 837f53260cf..355ada0ba1f 100644
--- a/lldb/tools/debugserver/source/DNBBreakpoint.cpp
+++ b/lldb/tools/debugserver/source/DNBBreakpoint.cpp
@@ -148,10 +148,10 @@ DNBBreakpointList::FindIDByAddress (nub_addr_t addr)
DNBBreakpoint *bp = FindByAddress (addr);
if (bp)
{
- DNBLogThreadedIf(LOG_BREAKPOINTS, "DNBBreakpointList::%s ( addr = 0x%8.8llx ) => %u", __FUNCTION__, (uint64_t)addr, bp->GetID());
+ DNBLogThreadedIf(LOG_BREAKPOINTS, "DNBBreakpointList::%s ( addr = 0x%16.16llx ) => %u", __FUNCTION__, (uint64_t)addr, bp->GetID());
return bp->GetID();
}
- DNBLogThreadedIf(LOG_BREAKPOINTS, "DNBBreakpointList::%s ( addr = 0x%8.8llx ) => NONE", __FUNCTION__, (uint64_t)addr);
+ DNBLogThreadedIf(LOG_BREAKPOINTS, "DNBBreakpointList::%s ( addr = 0x%16.16llx ) => NONE", __FUNCTION__, (uint64_t)addr);
return INVALID_NUB_BREAK_ID;
}
OpenPOWER on IntegriCloud