From 199292cfecb3c673e79c715aba2d1b1dd890a647 Mon Sep 17 00:00:00 2001 From: Richard Basch Date: Tue, 15 Mar 1994 07:47:32 +0000 Subject: Use NOW rather than t_local.tv_sec --- server/timer.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'server/timer.c') diff --git a/server/timer.c b/server/timer.c index a69e1b2..c671c8b 100644 --- a/server/timer.c +++ b/server/timer.c @@ -68,7 +68,6 @@ long nexttimo = 0L; /* the Unix time of the next alarm */ static timer timers = NULL; static long right_now; -struct timeval t_local; #ifdef __STDC__ # define P(s) s @@ -99,7 +98,7 @@ timer timer_set_rel (time_rel, proc, arg) void *arg; { timer new_t; - right_now = t_local.tv_sec; + right_now = NOW; new_t = (timer) xmalloc(TIMER_SIZE); if (new_t == NULL) return(NULL); ALARM_TIME(new_t) = time_rel + right_now; @@ -246,7 +245,7 @@ timer_process() void * queue_arg; int valid = 0; - right_now = t_local.tv_sec; + right_now = NOW; t=ALARM_NEXT(timers); /* note that in the case that there are no timers, the ALARM_TIME is set to 0L, which is what the main loop expects as the -- cgit v1.2.3