[Pdbg] [PATCH v2 18/39] gdbserver: disable attn after breaking

Nicholas Piggin npiggin at gmail.com
Wed Apr 20 16:49:52 AEST 2022


Rather than leave attn enabled, disable it when breaking to idle state
if it was enabled. This helps prevent attn from getting left on after
the debugger is detached or when no breakpoints are enabled.

Signed-off-by: Nicholas Piggin <npiggin at gmail.com>
---
 src/pdbgproxy.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/pdbgproxy.c b/src/pdbgproxy.c
index 7267fd8a..9729eaa1 100644
--- a/src/pdbgproxy.c
+++ b/src/pdbgproxy.c
@@ -382,6 +382,8 @@ static void poll(void)
 		if (!(status.quiesced))
 			break;
 
+		set_attn(false);
+
 		state = IDLE;
 		poll_interval = VCONT_POLL_DELAY;
 		if (!(status.active)) {
-- 
2.35.1



More information about the Pdbg mailing list