summaryrefslogtreecommitdiff
path: root/src/helper/log.c
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-07-20 18:26:08 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2008-07-20 18:26:08 +0000
commit495f257980926e3ea965f821332a86957ab9d702 (patch)
tree1e42dad1b4b721f953f769f0a1d11291fbea9070 /src/helper/log.c
parent2341c99e20b9271e87e2cfebfbb77efce7b8402e (diff)
downloadopenocd+libswd-495f257980926e3ea965f821332a86957ab9d702.tar.gz
openocd+libswd-495f257980926e3ea965f821332a86957ab9d702.tar.bz2
openocd+libswd-495f257980926e3ea965f821332a86957ab9d702.tar.xz
openocd+libswd-495f257980926e3ea965f821332a86957ab9d702.zip
BUG: prefix to timeout for gdb keep alive packets.
git-svn-id: svn://svn.berlios.de/openocd/trunk@844 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/helper/log.c')
-rw-r--r--src/helper/log.c2
1 files changed, 1 insertions, 1 deletions
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)
{