diff options
Diffstat (limited to 'otime.h')
-rw-r--r-- | otime.h | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -55,16 +55,13 @@ const char *tv_string (const struct timeval *tv, struct gc_arena *gc); const char *tv_string_abs (const struct timeval *tv, struct gc_arena *gc); extern volatile time_t now; /* updated frequently to time(NULL) */ -extern unsigned int now_adj; static inline void update_time (void) { - const time_t real_time = time (NULL) + now_adj; - if (real_time > now) + const time_t real_time = time (NULL); + if (real_time != now) now = real_time; - else if (real_time < now) - now_adj += (now - real_time); } static inline void |