From 495f257980926e3ea965f821332a86957ab9d702 Mon Sep 17 00:00:00 2001 From: oharboe Date: Sun, 20 Jul 2008 18:26:08 +0000 Subject: [PATCH] BUG: prefix to timeout for gdb keep alive packets. git-svn-id: svn://svn.berlios.de/openocd/trunk@844 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- src/helper/log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helper/log.c b/src/helper/log.c index ca9f0a7b45..f210b6d017 100644 --- a/src/helper/log.c +++ b/src/helper/log.c @@ -356,7 +356,7 @@ void keep_alive() current_time=timeval_ms(); if (current_time-last_time>1000) { - LOG_WARNING("keep_alive() was not invoked in the 1000ms timelimit. GDB alive packet not sent! (%lld)", current_time-last_time); + LOG_WARNING("BUG: keep_alive() was not invoked in the 1000ms timelimit. GDB alive packet not sent! (%lld)", current_time-last_time); last_time=current_time; } else if (current_time-last_time>500) { -- 2.30.2