aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/stackhandler.h
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2015-10-09 15:00:20 +0200
committerhjk <hjk@theqtcompany.com>2015-10-13 06:49:00 +0000
commitec2e01faec87e273486b81d0c3bf8ded2619c047 (patch)
tree0ae4ae25224bad3b8da9a4dd5c64656e8cbd8899 /src/plugins/debugger/stackhandler.h
parentd6ef70573d205ab9ac4491ec18c90c60373127a3 (diff)
Debugger: Make basic native-mixed debugging work with LLDB
Change-Id: I4d55c6a486d5adbccaa93eaa1ee461238fecfea3 Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
Diffstat (limited to 'src/plugins/debugger/stackhandler.h')
-rw-r--r--src/plugins/debugger/stackhandler.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/debugger/stackhandler.h b/src/plugins/debugger/stackhandler.h
index 3607eb7d6c4..19c9631b55f 100644
--- a/src/plugins/debugger/stackhandler.h
+++ b/src/plugins/debugger/stackhandler.h
@@ -59,6 +59,8 @@ public:
~StackHandler();
void setFrames(const StackFrames &frames, bool canExpand = false);
+ void setFramesAndCurrentIndex(const GdbMi &frames, bool isFull);
+ int updateTargetFrame(bool isFull);
void prependFrames(const StackFrames &frames);
const StackFrames &frames() const;
void setCurrentIndex(int index);
@@ -68,7 +70,6 @@ public:
const StackFrame &frameAt(int index) const { return m_stackFrames.at(index); }
int stackSize() const { return m_stackFrames.size(); }
quint64 topAddress() const { return m_stackFrames.at(0).address; }
- void setAllFrames(const GdbMi &frames, bool canExpand);
// Called from StackHandler after a new stack list has been received
void removeAll();