From e18cc528a812d7c7edcd336a0eb66de5d50b2a92 Mon Sep 17 00:00:00 2001 From: TuxSH Date: Sun, 2 Feb 2020 01:12:06 +0000 Subject: [PATCH] thermosphere: fix bug in debug.c --- thermosphere/src/gdb/debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thermosphere/src/gdb/debug.c b/thermosphere/src/gdb/debug.c index a0b9904f9..ad341dbff 100644 --- a/thermosphere/src/gdb/debug.c +++ b/thermosphere/src/gdb/debug.c @@ -535,7 +535,7 @@ GDB_DECLARE_VERBOSE_HANDLER(Continue) FOREACH_BIT (tmp, t, curMask) { // Set/unset stepping range for all threads affected by this command - debugManagerSetSteppingRange(t - 1, ssStartAddr, ssEndAddr); + debugManagerSetSteppingRange(t, ssStartAddr, ssEndAddr); } parsedCoreList |= curMask;