Patch from Daniel Malea that cleans up the process parameters for Process/Thread classes for POSIX and Linux.
llvm-svn: 165806
This commit is contained in:
@@ -510,8 +510,7 @@ ProcessPOSIX::UpdateThreadList(ThreadList &old_thread_list, ThreadList &new_thre
|
||||
assert(m_monitor);
|
||||
ThreadSP thread_sp (old_thread_list.FindThreadByID (GetID(), false));
|
||||
if (!thread_sp) {
|
||||
ProcessSP me = this->shared_from_this();
|
||||
thread_sp.reset(new POSIXThread(me, GetID()));
|
||||
thread_sp.reset(new POSIXThread(*this, GetID()));
|
||||
}
|
||||
|
||||
if (log && log->GetMask().Test(POSIX_LOG_VERBOSE))
|
||||
|
||||
Reference in New Issue
Block a user