From 6f35f5cf5d4f2fad8ec3d6b0cfe087ab63c7fd48 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Thu, 9 Sep 2010 06:32:46 +0000 Subject: Got the ARM version of debugserver up to date. Renamed the "dispatchqaddr" setting that was coming back for stop reply packets to be named "qaddr" so that gdb doesn't thing it is a register number. gdb was checking the first character and assuming "di" was a hex register number because 'd' is a hex digit. It has been shortened so gdb can safely ignore it. llvm-svn: 113475 --- lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp') diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index c9f864f02e4..8f63125e466 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -1042,7 +1042,7 @@ ProcessGDBRemote::SetThreadStopInfo (StringExtractor& stop_packet) { thread_name.swap (value); } - else if (name.compare("dispatchqaddr") == 0) + else if (name.compare("qaddr") == 0) { thread_dispatch_qaddr = Args::StringToUInt64 (value.c_str(), 0, 16); } -- cgit v1.2.3