From: oharboe Date: Sun, 20 Jul 2008 18:26:08 +0000 (+0000) Subject: BUG: prefix to timeout for gdb keep alive packets. X-Git-Tag: v0.1.0~455 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=495f257980926e3ea965f821332a86957ab9d702;p=openocd BUG: prefix to timeout for gdb keep alive packets. git-svn-id: svn://svn.berlios.de/openocd/trunk@844 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- diff --git a/src/helper/log.c b/src/helper/log.c index ca9f0a7b..f210b6d0 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) {