Use __timeradd(), not timervaladd().

This commit is contained in:
mycroft 1994-12-11 17:56:21 +00:00
parent f6a8ef8452
commit 6332be8c7f
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: sunos_misc.c,v 1.37 1994/11/30 09:40:23 pk Exp $ */
/* $NetBSD: sunos_misc.c,v 1.38 1994/12/11 17:56:21 mycroft Exp $ */
/*
* Copyright (c) 1992, 1993
@ -965,7 +965,7 @@ sunos_poll(p, uap, retval)
goto done;
}
s = splclock();
timevaladd(&atv, (struct timeval *)&time);
__timeradd(&atv, &time);
timo = hzto(&atv);
/*
* Avoid inadvertently sleeping forever.

View File

@ -1,4 +1,4 @@
/* $NetBSD: svr4_fcntl.c,v 1.6 1994/11/18 02:53:43 christos Exp $ */
/* $NetBSD: svr4_fcntl.c,v 1.7 1994/12/11 17:56:24 mycroft Exp $ */
/*
* Copyright (c) 1994 Christos Zoulas
@ -394,7 +394,7 @@ svr4_poll(p, uap, retval)
goto done;
}
s = splclock();
timevaladd(&atv, (struct timeval *)&time);
__timeradd(&atv, &time);
timo = hzto(&atv);
/*
* Avoid inadvertently sleeping forever.