forked from OSchip/llvm-project
[Process] Fix another thread_result_t & nullptr incompatibility.
llvm-svn: 361548
This commit is contained in:
parent
7d6c0bce50
commit
edb52e2e7d
|
@ -3638,7 +3638,7 @@ void Process::ControlPrivateStateThread(uint32_t signal) {
|
|||
}
|
||||
|
||||
if (signal == eBroadcastInternalStateControlStop) {
|
||||
thread_result_t result = nullptr;
|
||||
thread_result_t result = {};
|
||||
m_private_state_thread.Join(&result);
|
||||
m_private_state_thread.Reset();
|
||||
}
|
||||
|
@ -3913,7 +3913,7 @@ thread_result_t Process::RunPrivateStateThread(bool is_secondary_thread) {
|
|||
// it was doing yet, so don't try to change it on the way out.
|
||||
if (!is_secondary_thread)
|
||||
m_public_run_lock.SetStopped();
|
||||
return nullptr;
|
||||
return {};
|
||||
}
|
||||
|
||||
// Process Event Data
|
||||
|
@ -4073,8 +4073,8 @@ void Process::ProcessEventData::DoOnRemoval(Event *event_ptr) {
|
|||
process_sp->PrivateResume();
|
||||
} else {
|
||||
bool hijacked =
|
||||
process_sp->IsHijackedForEvent(eBroadcastBitStateChanged)
|
||||
&& !process_sp->StateChangedIsHijackedForSynchronousResume();
|
||||
process_sp->IsHijackedForEvent(eBroadcastBitStateChanged) &&
|
||||
!process_sp->StateChangedIsHijackedForSynchronousResume();
|
||||
|
||||
if (!hijacked) {
|
||||
// If we didn't restart, run the Stop Hooks here.
|
||||
|
|
Loading…
Reference in New Issue