We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f82ca0f commit 945f32dCopy full SHA for 945f32d
qiling/debugger/gdb/gdb.py
@@ -656,6 +656,12 @@ def handle_s(subcmd: str) -> Reply:
656
"""Perform a single step.
657
"""
658
659
+ # BUG: a known unicorn caching issue causes it to emulate more
660
+ # steps than requestes. until that issue is fixed, single stepping
661
+ # is essentially broken.
662
+ #
663
+ # @see: https://github.com/unicorn-engine/unicorn/issues/1606
664
+
665
self.gdb.resume_emu(steps=1)
666
667
return f'S{SIGTRAP:02x}'
0 commit comments