diff options
Diffstat (limited to 'lldb/include/lldb/Target/Thread.h')
| -rw-r--r-- | lldb/include/lldb/Target/Thread.h | 9 | 
1 files changed, 9 insertions, 0 deletions
| diff --git a/lldb/include/lldb/Target/Thread.h b/lldb/include/lldb/Target/Thread.h index 172a9f224b8..7a11d027784 100644 --- a/lldb/include/lldb/Target/Thread.h +++ b/lldb/include/lldb/Target/Thread.h @@ -758,6 +758,15 @@ public:                           uint32_t source_lines_before,                           uint32_t source_lines_after); +    // We need a way to verify that even though we have a thread in a shared +    // pointer that the object itself is still valid. Currently this won't be +    // the case if DestroyThread() was called. DestroyThread is called when +    // a thread has been removed from the Process' thread list. +    bool +    IsValid () const +    { +        return m_destroy_called; +    }  protected:      friend class ThreadPlan; | 

