In gdb, I could skip the next n breakpoints with "continue n" or skip the next n lines of "next n". What are the equivalents in lldb?
And if there were none, how can I create them myself in the lldb python extension? I tried something like this, but it did not work, lldb freezes when I type the command I added.
def cc(debugger, args, result, dict):
target = debugger.GetSelectedTarget()
process = target.GetProcess()
process.Continue()
source
share