made warning about keep_alive() not being invoked more helpful
git-svn-id: svn://svn.berlios.de/openocd/trunk@1606 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
a83583e926
commit
e03658ee07
|
@ -389,7 +389,7 @@ void keep_alive()
|
||||||
current_time=timeval_ms();
|
current_time=timeval_ms();
|
||||||
if (current_time-last_time>1000)
|
if (current_time-last_time>1000)
|
||||||
{
|
{
|
||||||
LOG_WARNING("BUG: keep_alive() was not invoked in the 1000ms timelimit. GDB alive packet not sent! (%lld)", current_time-last_time);
|
LOG_WARNING("keep_alive() was not invoked in the 1000ms timelimit. GDB alive packet not sent! (%lld). Workaround: increase \"set remotetimeout\" in GDB", current_time-last_time);
|
||||||
}
|
}
|
||||||
if (current_time-last_time>500)
|
if (current_time-last_time>500)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue