diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2019-01-19 10:06:29 +0000 |
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2019-01-19 10:06:29 +0000 |
| commit | 94994d372d014ce4c8758b9605d63fae651bd8aa (patch) | |
| tree | 51c0b708bd59f205d6b35cb2a8c24d62f0c33d77 /include/lldb/Target/ThreadPlan.h | |
| parent | 39be7ce23363d12ae3e49aeb1fdb2bfeb892e836 (diff) | |
Notes
Diffstat (limited to 'include/lldb/Target/ThreadPlan.h')
| -rw-r--r-- | include/lldb/Target/ThreadPlan.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/lldb/Target/ThreadPlan.h b/include/lldb/Target/ThreadPlan.h index 7591fa9c9d07..15bc4c7656c3 100644 --- a/include/lldb/Target/ThreadPlan.h +++ b/include/lldb/Target/ThreadPlan.h @@ -10,13 +10,9 @@ #ifndef liblldb_ThreadPlan_h_ #define liblldb_ThreadPlan_h_ -// C Includes -// C++ Includes #include <mutex> #include <string> -// Other libraries and framework includes -// Project includes #include "lldb/Target/Process.h" #include "lldb/Target/StopInfo.h" #include "lldb/Target/Target.h" @@ -600,10 +596,12 @@ protected: bool IsUsuallyUnexplainedStopReason(lldb::StopReason); + Status m_status; Thread &m_thread; Vote m_stop_vote; Vote m_run_vote; - bool m_takes_iteration_count = false; + bool m_takes_iteration_count; + bool m_could_not_resolve_hw_bp; int32_t m_iteration_count = 1; private: @@ -655,6 +653,8 @@ public: bool OkayToDiscard() override { return false; } + const Status &GetStatus() { return m_status; } + protected: bool DoPlanExplainsStop(Event *event_ptr) override; |
