[Lldb-commits] [lldb] r118242 - /lldb/trunk/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp

Jason Molenda jmolenda at apple.com
Thu Nov 4 02:46:43 PDT 2010


Author: jmolenda
Date: Thu Nov  4 04:46:43 2010
New Revision: 118242

URL: http://llvm.org/viewvc/llvm-project?rev=118242&view=rev
Log:
Revert last checking to ThreadGDBRemote.cpp; I accidentally checked
that in along with some cleanup work with the native unwinder code.


Modified:
    lldb/trunk/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp

Modified: lldb/trunk/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp?rev=118242&r1=118241&r2=118242&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp (original)
+++ lldb/trunk/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp Thu Nov  4 04:46:43 2010
@@ -26,8 +26,6 @@
 #include "Utility/StringExtractorGDBRemote.h"
 #include "UnwindLibUnwind.h"
 #include "UnwindMacOSXFrameBackchain.h"
-#include "UnwindLLDB.h"
-#include "RegisterContextLLDB.h"
 
 using namespace lldb;
 using namespace lldb_private;
@@ -130,7 +128,7 @@
         const ArchSpec target_arch (GetProcess().GetTarget().GetArchitecture ());
         if (target_arch == ArchSpec("x86_64") ||  target_arch == ArchSpec("i386"))
         {
-            m_unwinder_ap.reset (new UnwindLLDB (*this));
+            m_unwinder_ap.reset (new UnwindLibUnwind (*this, GetGDBProcess().GetLibUnwindAddressSpace()));
         }
         else
         {





More information about the lldb-commits mailing list