forked from OSchip/llvm-project
Fixed a long delay in shutdown times by invalidating m_private_state_thread right before the private state thread (which calls "void *Process::RunPrivateStateThread ()") exits.
llvm-svn: 111567
This commit is contained in:
parent
086cae6c1f
commit
be77e3bd6e
|
@ -1567,6 +1567,7 @@ Process::RunPrivateStateThread ()
|
|||
if (log)
|
||||
log->Printf ("Process::%s (arg = %p, pid = %i) thread exiting...", __FUNCTION__, this, GetID());
|
||||
|
||||
m_private_state_thread = LLDB_INVALID_HOST_THREAD;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue