diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:55:28 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2015-12-30 11:55:28 +0000 | 
| commit | e81d9d49145e432d917eea3a70d2ae74dcad1d89 (patch) | |
| tree | 9ed5e1a91f242e2cb5911577356e487a55c01b78 /source/Plugins/Process/Utility/HistoryUnwind.h | |
| parent | 85d8ef8f1f0e0e063a8571944302be2d2026f823 (diff) | |
Notes
Diffstat (limited to 'source/Plugins/Process/Utility/HistoryUnwind.h')
| -rw-r--r-- | source/Plugins/Process/Utility/HistoryUnwind.h | 20 | 
1 files changed, 12 insertions, 8 deletions
| diff --git a/source/Plugins/Process/Utility/HistoryUnwind.h b/source/Plugins/Process/Utility/HistoryUnwind.h index 733f93e1ff87e..2cb78bc1dc637 100644 --- a/source/Plugins/Process/Utility/HistoryUnwind.h +++ b/source/Plugins/Process/Utility/HistoryUnwind.h @@ -10,8 +10,12 @@  #ifndef liblldb_HistoryUnwind_h_  #define liblldb_HistoryUnwind_h_ +// C Includes +// C++ Includes  #include <vector> +// Other libraries and framework includes +// Project includes  #include "lldb/lldb-private.h"  #include "lldb/Host/Mutex.h"  #include "lldb/Target/Unwind.h" @@ -23,21 +27,21 @@ class HistoryUnwind : public lldb_private::Unwind  public:      HistoryUnwind (Thread &thread, std::vector<lldb::addr_t> pcs, bool stop_id_is_valid); -    virtual ~HistoryUnwind (); +    ~HistoryUnwind() override;  protected:      void -    DoClear(); +    DoClear() override;      lldb::RegisterContextSP -    DoCreateRegisterContextForFrame (StackFrame *frame); +    DoCreateRegisterContextForFrame(StackFrame *frame) override;      bool -    DoGetFrameInfoAtIndex (uint32_t frame_idx, -                           lldb::addr_t& cfa,  -                           lldb::addr_t& pc); +    DoGetFrameInfoAtIndex(uint32_t frame_idx, +                          lldb::addr_t& cfa,  +                          lldb::addr_t& pc) override;      uint32_t -    DoGetFrameCount (); +    DoGetFrameCount() override;  private: @@ -47,4 +51,4 @@ private:  } // namespace lldb_private -#endif  // liblldb_HistoryUnwind_h_ +#endif // liblldb_HistoryUnwind_h_ | 
