diff options
author | Jim Ingham <jingham@apple.com> | 2012-10-10 18:32:14 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-10-10 18:32:14 +0000 |
commit | 4f465cff8a1591a821d13c7fb34bfc56c1d1d96f (patch) | |
tree | efe067b447ee152883e2235bf3a95c23544d07c4 /lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.h | |
parent | 9a6717f647653eef94344f9d31239a1128998fa3 (diff) | |
download | llvm-4f465cff8a1591a821d13c7fb34bfc56c1d1d96f.zip llvm-4f465cff8a1591a821d13c7fb34bfc56c1d1d96f.tar.gz llvm-4f465cff8a1591a821d13c7fb34bfc56c1d1d96f.tar.bz2 |
Change the Thread constructor over to take a Process& rather than a ProcessSP. We can't create Threads with a NULL ProcessSP, so it makes no sense to use the SP.
Then make the Thread a Broadcaster, and get it to broadcast when the selected frame is changed (but only from the Command Line) and when Thread::ReturnFromFrame
changes the stack.
Made the Driver use this notification to print the new thread status rather than doing it in the command.
Fixed a few places where people were setting their broadcaster class by hand rather than using the static broadcaster class call.
<rdar://problem/12383087>
llvm-svn: 165640
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.h b/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.h index 3eb6295..375b7a5 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.h +++ b/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.h @@ -21,7 +21,7 @@ class ProcessGDBRemote; class ThreadGDBRemote : public lldb_private::Thread { public: - ThreadGDBRemote (const lldb::ProcessSP &process_sp, lldb::tid_t tid); + ThreadGDBRemote (lldb_private::Process &process, lldb::tid_t tid); virtual ~ThreadGDBRemote (); |