diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-11-26 21:23:07 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-11-26 21:23:07 +0000 |
commit | f9890bc6ff658fab91356e7ec4a4c2f1ca77c39a (patch) | |
tree | 621aa2268cf9e05cddd488fa2a2d425fd625739e /sys/kern/subr_evcount.c | |
parent | 5382705f9a2199c8dd490a0ac41b017d64b3743f (diff) |
Kill __HAVE_EVCOUNT, now that all architectures provide them.
Diffstat (limited to 'sys/kern/subr_evcount.c')
-rw-r--r-- | sys/kern/subr_evcount.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/kern/subr_evcount.c b/sys/kern/subr_evcount.c index 3b0ca7223b3..76fe02019aa 100644 --- a/sys/kern/subr_evcount.c +++ b/sys/kern/subr_evcount.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_evcount.c,v 1.4 2004/09/29 07:37:04 miod Exp $ */ +/* $OpenBSD: subr_evcount.c,v 1.5 2004/11/26 21:23:06 miod Exp $ */ /* * Copyright (c) 2004 Artur Grabowski <art@openbsd.org> * Copyright (c) 2004 Aaron Campbell <aaron@openbsd.org> @@ -32,8 +32,6 @@ #include <sys/systm.h> #include <sys/sysctl.h> -#ifdef __HAVE_EVCOUNT - static TAILQ_HEAD(,evcount) evcount_list; static struct evcount *evcount_next_sync; @@ -149,5 +147,3 @@ evcount_sysctl(name, namelen, oldp, oldlenp, newp, newlen) return (error); } - -#endif /* __HAVE_EVCOUNT */ |