From cc197c808625d9afa5e4c316122d59b71fe8ee44 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=98yvind=20Harboe?= Date: Wed, 17 Mar 2010 12:59:33 +0100 Subject: [PATCH] gdb: long running "monitor mww" now works w/gdb MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit invoke keep_alive() to make sure that the default 2000ms timeout does not trigger. Signed-off-by: Øyvind Harboe --- src/target/target.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/target/target.c b/src/target/target.c index 91fe78741a..2c88a6fd87 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -2355,6 +2355,8 @@ static int target_fill_mem(struct target *target, { break; } + /* avoid GDB timeouts */ + keep_alive(); } free(target_buf); -- 2.30.2