From be95b5b860d86e179e2dec6ca8415d78c556dce0 Mon Sep 17 00:00:00 2001 From: Richard Basch Date: Tue, 15 Mar 1994 07:40:09 +0000 Subject: Use t_local, rather than calling gettimeofday() --- server/timer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server/timer.c') diff --git a/server/timer.c b/server/timer.c index 05d5fcb..a69e1b2 100644 --- a/server/timer.c +++ b/server/timer.c @@ -99,7 +99,7 @@ timer timer_set_rel (time_rel, proc, arg) void *arg; { timer new_t; - right_now = NOW; + right_now = t_local.tv_sec; new_t = (timer) xmalloc(TIMER_SIZE); if (new_t == NULL) return(NULL); ALARM_TIME(new_t) = time_rel + right_now; @@ -246,7 +246,7 @@ timer_process() void * queue_arg; int valid = 0; - right_now = NOW; + right_now = t_local.tv_sec; 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