[Lldb-commits] [PATCH] D12218: Implement handling of `library:` keys in thread stop replies.

Stephane Sezer via lldb-commits lldb-commits at lists.llvm.org
Fri Aug 21 09:53:02 PDT 2015


This revision was automatically updated to reflect the committed changes.
Closed by commit rL245708: Implement handling of `library:` keys in thread stop replies. (authored by sas).

Changed prior to commit:
  http://reviews.llvm.org/D12218?vs=32766&id=32835#toc

Repository:
  rL LLVM

http://reviews.llvm.org/D12218

Files:
  lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp

Index: lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
===================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+++ lldb/trunk/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
@@ -2523,6 +2523,10 @@
                     ostr.Printf("%" PRIu64 " %" PRIu32, wp_addr, wp_index);
                     description = ostr.GetString().c_str();
                 }
+                else if (key.compare("library") == 0)
+                {
+                    LoadModules();
+                }
                 else if (key.size() == 2 && ::isxdigit(key[0]) && ::isxdigit(key[1]))
                 {
                     uint32_t reg = StringConvert::ToUInt32 (key.c_str(), UINT32_MAX, 16);


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D12218.32835.patch
Type: text/x-patch
Size: 787 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20150821/ac16b665/attachment-0001.bin>


More information about the lldb-commits mailing list