forked from qt-creator/qt-creator
Debugger: Let creator trigger the locals update also with LLDB
Makes the code path more similar to the GDB side and allows skipping register refreshs when the view is invisible. Change-Id: Ia9210ee1709dbc5c9c7a6870bf8a54484261fee0 Reviewed-by: Christian Stenger <christian.stenger@digia.com>
This commit is contained in:
@@ -1281,8 +1281,6 @@ class Dumper(DumperBase):
|
||||
self.reportStackTop()
|
||||
self.reportThreads()
|
||||
self.reportLocation()
|
||||
self.reportVariables()
|
||||
self.reportRegisters()
|
||||
self.reportChangedBreakpoints()
|
||||
elif type == lldb.SBProcess.eBroadcastBitInterrupt:
|
||||
pass
|
||||
@@ -1556,7 +1554,6 @@ class Dumper(DumperBase):
|
||||
state = self.process.GetState()
|
||||
if state == lldb.eStateStopped:
|
||||
self.reportStackPosition()
|
||||
self.reportVariables()
|
||||
|
||||
def selectThread(self, args):
|
||||
self.process.SetSelectedThreadByID(args['id'])
|
||||
|
||||
Reference in New Issue
Block a user