diff options
Diffstat (limited to 'lldb/source/Target/Process.cpp')
| -rw-r--r-- | lldb/source/Target/Process.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/lldb/source/Target/Process.cpp b/lldb/source/Target/Process.cpp index 046706637691..b2f1318ca91d 100644 --- a/lldb/source/Target/Process.cpp +++ b/lldb/source/Target/Process.cpp @@ -433,7 +433,8 @@ Process::Process(lldb::TargetSP target_sp, ListenerSP listener_sp, m_profile_data_comm_mutex(), m_profile_data(), m_iohandler_sync(0), m_memory_cache(*this), m_allocated_memory_cache(*this), m_should_detach(false), m_next_event_action_up(), m_public_run_lock(), - m_private_run_lock(), m_finalizing(false), + m_private_run_lock(), m_currently_handling_do_on_removals(false), + m_resume_requested(false), m_finalizing(false), m_clear_thread_plans_on_stop(false), m_force_next_event_delivery(false), m_last_broadcast_state(eStateInvalid), m_destroy_in_process(false), m_can_interpret_function_calls(false), m_run_thread_plan_lock(), @@ -2566,8 +2567,8 @@ Status Process::LaunchPrivate(ProcessLaunchInfo &launch_info, StateType &state, if (state == eStateStopped || state == eStateCrashed) { DidLaunch(); - - // Now that we know the process type, update its signal responses from the + + // Now that we know the process type, update its signal responses from the // ones stored in the Target: if (m_unix_signals_sp) { StreamSP warning_strm = GetTarget().GetDebugger().GetAsyncErrorStream(); @@ -2935,7 +2936,7 @@ void Process::CompleteAttach() { } } } - // Now that we know the process type, update its signal responses from the + // Now that we know the process type, update its signal responses from the // ones stored in the Target: if (m_unix_signals_sp) { StreamSP warning_strm = GetTarget().GetDebugger().GetAsyncErrorStream(); @@ -4550,9 +4551,9 @@ public: private: lldb::ThreadPlanSP m_thread_plan_sp; bool m_already_reset = false; - bool m_private; - bool m_is_controlling; - bool m_okay_to_discard; + bool m_private = false; + bool m_is_controlling = false; + bool m_okay_to_discard = false; }; } // anonymous namespace |
