diff options
author | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-07-20 18:26:08 +0000 |
---|---|---|
committer | oharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2008-07-20 18:26:08 +0000 |
commit | 495f257980926e3ea965f821332a86957ab9d702 (patch) | |
tree | 1e42dad1b4b721f953f769f0a1d11291fbea9070 /src | |
parent | 2341c99e20b9271e87e2cfebfbb77efce7b8402e (diff) | |
download | openocd_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')
-rw-r--r-- | src/helper/log.c | 2 |
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) { |