diff options
Diffstat (limited to 'lldb/include/lldb/Target/Thread.h')
-rw-r--r-- | lldb/include/lldb/Target/Thread.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lldb/include/lldb/Target/Thread.h b/lldb/include/lldb/Target/Thread.h index c1cd2a75d42..f1f8439e2a4 100644 --- a/lldb/include/lldb/Target/Thread.h +++ b/lldb/include/lldb/Target/Thread.h @@ -288,7 +288,7 @@ public: Vote ShouldReportStop (Event *event_ptr); - + Vote ShouldReportRun (Event *event_ptr); @@ -927,6 +927,9 @@ public: void SetStopInfo (const lldb::StopInfoSP &stop_info_sp); + void + SetShouldReportStop (Vote vote); + protected: friend class ThreadPlan; @@ -1015,7 +1018,7 @@ protected: bool m_destroy_called; // This is used internally to make sure derived Thread classes call DestroyThread. uint32_t m_thread_stop_reason_stop_id; // This is the stop id for which the StopInfo is valid. Can use this so you know that // the thread's m_actual_stop_info_sp is current and you don't have to fetch it again - + LazyBool m_override_should_notify; private: //------------------------------------------------------------------ // For Thread only |