diff options
author | Ed Maste <emaste@freebsd.org> | 2015-07-28 16:57:36 +0000 |
---|---|---|
committer | Ed Maste <emaste@freebsd.org> | 2015-07-28 16:57:36 +0000 |
commit | 63c9fa01eb04c02b294535fc53a269d7f993f895 (patch) | |
tree | 2b61a75b62e7c9f0500fc60bcc114560a743fed2 /lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp | |
parent | e8ce3e616b7d7f4f1635dcdbea7ea74752244cd9 (diff) | |
download | bcm5719-llvm-63c9fa01eb04c02b294535fc53a269d7f993f895.tar.gz bcm5719-llvm-63c9fa01eb04c02b294535fc53a269d7f993f895.zip |
Remove eNewThreadMessage from FreeBSD process monitor
FreeBSD thread information is updated after stop - we do not use a
message for thread creation.
llvm-svn: 243448
Diffstat (limited to 'lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp b/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp index 24ca3ff2b1a..31a2e128002 100644 --- a/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp +++ b/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp @@ -412,10 +412,6 @@ FreeBSDThread::Notify(const ProcessMessage &message) CrashNotify(message); break; - case ProcessMessage::eNewThreadMessage: - ThreadNotify(message); - break; - case ProcessMessage::eExecMessage: ExecNotify(message); break; @@ -623,12 +619,6 @@ FreeBSDThread::CrashNotify(const ProcessMessage &message) message.GetFaultAddress()))); } -void -FreeBSDThread::ThreadNotify(const ProcessMessage &message) -{ - SetStopInfo (lldb::StopInfoSP(new POSIXNewThreadStopInfo(*this))); -} - unsigned FreeBSDThread::GetRegisterIndexFromOffset(unsigned offset) { |