diff options
| author | Greg Clayton <gclayton@apple.com> | 2013-05-21 21:55:59 +0000 |
|---|---|---|
| committer | Greg Clayton <gclayton@apple.com> | 2013-05-21 21:55:59 +0000 |
| commit | 8cda7f083069d4cc1c8e5c8e658bbdbac0eea249 (patch) | |
| tree | ea5530993e794203cb173e87ed617ab1651acde1 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | |
| parent | 4df05caadbbf588406f99ef74342db49a647c1e2 (diff) | |
| download | bcm5719-llvm-8cda7f083069d4cc1c8e5c8e658bbdbac0eea249.tar.gz bcm5719-llvm-8cda7f083069d4cc1c8e5c8e658bbdbac0eea249.zip | |
Added a test case that verifies that LLDB can debug across a process exec'ing itself into a new program. This currently is only enabled for Darwin since we exec from 64 bit to 32 bit and vice versa for 'x86_64' targets.
This can easily be adapted for linux and other platforms, but I didn't want to break any buildbots by assuming it will work.
llvm-svn: 182428
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h')
| -rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h index b42a61dc652..ab8fef3f295 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h @@ -114,9 +114,6 @@ public: virtual void DidAttach (); - virtual void - DoDidExec (); - //------------------------------------------------------------------ // PluginInterface protocol //------------------------------------------------------------------ @@ -289,11 +286,7 @@ protected: BuildDynamicRegisterInfo (bool force); void - SetLastStopPacket (const StringExtractorGDBRemote &response) - { - lldb_private::Mutex::Locker locker (m_last_stop_packet_mutex); - m_last_stop_packet = response; - } + SetLastStopPacket (const StringExtractorGDBRemote &response); //------------------------------------------------------------------ /// Broadcaster event bits definitions. |

