diff options
author | Jim Ingham <jingham@apple.com> | 2014-08-02 00:33:35 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2014-08-02 00:33:35 +0000 |
commit | bb006ce29171aef3eb7bdebf52fcd0a5c21385fe (patch) | |
tree | 5265d4909dbacd5ca17b27f2b80b1618a739fdd4 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | |
parent | ee1a1fc90043cc520e778ccde5241f451b9cc40c (diff) | |
download | llvm-bb006ce29171aef3eb7bdebf52fcd0a5c21385fe.zip llvm-bb006ce29171aef3eb7bdebf52fcd0a5c21385fe.tar.gz llvm-bb006ce29171aef3eb7bdebf52fcd0a5c21385fe.tar.bz2 |
After you attach, give the process plugin a chance to report back (through
DidAttach) the architecture of the binary you attached to.
<rdar://problem/17891396>
llvm-svn: 214603
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h index baee872..39395af 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h @@ -117,7 +117,7 @@ public: const lldb_private::ProcessAttachInfo &attach_info); virtual void - DidAttach (); + DidAttach (lldb_private::ArchSpec &process_arch); //------------------------------------------------------------------ // PluginInterface protocol @@ -389,7 +389,7 @@ protected: UpdateThreadIDList (); void - DidLaunchOrAttach (); + DidLaunchOrAttach (lldb_private::ArchSpec& process_arch); lldb_private::Error ConnectToDebugserver (const char *host_port); |