|
From: oharboe at B. <oh...@ma...> - 2009-05-05 14:07:04
|
Author: oharboe
Date: 2009-05-05 14:07:02 +0200 (Tue, 05 May 2009)
New Revision: 1606
Modified:
trunk/src/helper/log.c
Log:
made warning about keep_alive() not being invoked more helpful
Modified: trunk/src/helper/log.c
===================================================================
--- trunk/src/helper/log.c 2009-05-05 12:06:26 UTC (rev 1605)
+++ trunk/src/helper/log.c 2009-05-05 12:07:02 UTC (rev 1606)
@@ -389,7 +389,7 @@
current_time=timeval_ms();
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)
{
|