diff options
author | 2009-11-04 19:14:09 +0000 | |
---|---|---|
committer | 2009-11-04 19:14:09 +0000 | |
commit | 8302c82dba603810a45a46a5f47ab1f002cba51b (patch) | |
tree | 1eac5b28b3431d2257949b1e3e046fbc8209f793 /sys/kern/kern_timeout.c | |
parent | regen (diff) | |
download | wireguard-openbsd-8302c82dba603810a45a46a5f47ab1f002cba51b.tar.xz wireguard-openbsd-8302c82dba603810a45a46a5f47ab1f002cba51b.zip |
Get rid of __HAVE_GENERIC_SOFT_INTERRUPTS now that all our platforms support it.
ok jsing@, miod@
Diffstat (limited to 'sys/kern/kern_timeout.c')
-rw-r--r-- | sys/kern/kern_timeout.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/kern/kern_timeout.c b/sys/kern/kern_timeout.c index be87d0fc789..90b3f08e1ed 100644 --- a/sys/kern/kern_timeout.c +++ b/sys/kern/kern_timeout.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_timeout.c,v 1.31 2009/06/02 22:05:54 guenther Exp $ */ +/* $OpenBSD: kern_timeout.c,v 1.32 2009/11/04 19:14:10 kettenis Exp $ */ /* * Copyright (c) 2001 Thomas Nordin <nordin@openbsd.org> * Copyright (c) 2000-2001 Artur Grabowski <art@openbsd.org> @@ -304,11 +304,10 @@ timeout_hardclock_update(void) } void -softclock(void) +softclock(void *arg) { struct timeout *to; void (*fn)(void *); - void *arg; mtx_enter(&timeout_mutex); while (!CIRCQ_EMPTY(&timeout_todo)) { |