From: art Date: Thu, 23 Mar 2000 11:26:28 +0000 (+0000) Subject: convert to new timeouts. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=620550e45e6d9faf42fefde0101554f4b7e7a522;p=openbsd convert to new timeouts. --- diff --git a/sys/kern/kern_acct.c b/sys/kern/kern_acct.c index d2ec5b7f837..54ff5542ad5 100644 --- a/sys/kern/kern_acct.c +++ b/sys/kern/kern_acct.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_acct.c,v 1.7 1998/07/28 00:13:00 millert Exp $ */ +/* $OpenBSD: kern_acct.c,v 1.8 2000/03/23 11:26:28 art Exp $ */ /* $NetBSD: kern_acct.c,v 1.42 1996/02/04 02:15:12 christos Exp $ */ /*- @@ -56,6 +56,7 @@ #include #include #include +#include #include @@ -106,6 +107,7 @@ sys_acct(p, v, retval) } */ *uap = v; struct nameidata nd; int error; + static struct timeout acct_timeout; /* Make sure that the caller is root. */ if ((error = suser(p->p_ucred, &p->p_acflag)) != 0) @@ -132,7 +134,7 @@ sys_acct(p, v, retval) * close the file, and (if no new file was specified, leave). */ if (acctp != NULLVP || savacctp != NULLVP) { - untimeout(acctwatch, NULL); + timeout_del(&acct_timeout); error = vn_close((acctp != NULLVP ? acctp : savacctp), FWRITE, p->p_ucred, p); acctp = savacctp = NULLVP; @@ -145,7 +147,9 @@ sys_acct(p, v, retval) * free space watcher. */ acctp = nd.ni_vp; - acctwatch(NULL); + if (!timeout_initialized(&acct_timeout)) + timeout_set(&acct_timeout, acctwatch, &acct_timeout); + acctwatch(&acct_timeout); return (error); } @@ -269,9 +273,10 @@ encode_comp_t(s, us) */ /* ARGSUSED */ void -acctwatch(a) - void *a; +acctwatch(arg) + void *arg; { + struct timeout *to = (struct timeout *)arg; struct statfs sb; if (savacctp != NULLVP) { @@ -300,5 +305,5 @@ acctwatch(a) } } else return; - timeout(acctwatch, NULL, acctchkfreq * hz); + timeout_add(to, acctchkfreq * hz); }