From: michux Date: Wed, 15 Apr 2009 19:28:30 +0000 (+0000) Subject: fix timestamp loop issue X-Git-Tag: svn1203~176 X-Git-Url: https://git.webhop.me/?a=commitdiff_plain;h=6454194b7c2c04f3c3cf6fdf3eb89e6973170207;p=lcd4linux.git fix timestamp loop issue git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@1027 3ae390bd-cb1e-0410-b409-cd5a39f66f1f --- diff --git a/timer.c b/timer.c index 355538b..f313a36 100644 --- a/timer.c +++ b/timer.c @@ -178,6 +178,14 @@ int timer_process(struct timespec *delay) /* nanoseconds!! */ delay->tv_nsec *= 1000; + /* check if date changed*/ + if ((delay->tv_sec) > 1) { + delay->tv_sec = 0; + warn("Oops, clock skewed, update timestamp"); + gettimeofday(&now, NULL); + Timers[min].when = now; + } + return 0; }