diff options
-rw-r--r-- | sys/conf/files | 3 | ||||
-rw-r--r-- | sys/kern/kern_sensors.c | 28 | ||||
-rw-r--r-- | sys/kern/kern_sysctl.c | 4 |
3 files changed, 31 insertions, 4 deletions
diff --git a/sys/conf/files b/sys/conf/files index e4661a04d35..096d9ce6700 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -1,4 +1,4 @@ -# $OpenBSD: files,v 1.353 2005/11/01 03:10:21 jsg Exp $ +# $OpenBSD: files,v 1.354 2005/11/10 08:10:16 dlg Exp $ # $NetBSD: files,v 1.87 1996/05/19 17:17:50 jonathan Exp $ # @(#)files.newconf 7.5 (Berkeley) 5/10/93 @@ -600,6 +600,7 @@ file kern/kern_physio.c file kern/kern_proc.c file kern/kern_prot.c file kern/kern_resource.c +file kern/kern_sensors.c !small_kernel file kern/kern_sig.c file kern/kern_subr.c file kern/kern_sysctl.c diff --git a/sys/kern/kern_sensors.c b/sys/kern/kern_sensors.c new file mode 100644 index 00000000000..6a3a67420c6 --- /dev/null +++ b/sys/kern/kern_sensors.c @@ -0,0 +1,28 @@ +/* $OpenBSD: kern_sensors.c,v 1.1 2005/11/10 08:10:16 dlg Exp $ */ + +/* + * Copyright (c) 2005 David Gwynne <dlg@openbsd.org> + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <sys/param.h> +#include <sys/queue.h> +#include <sys/types.h> +#include <sys/time.h> + +#include <sys/sensors.h> + +int nsensors = 0; +struct sensors_head sensors = SLIST_HEAD_INITIALIZER(&sensors); + diff --git a/sys/kern/kern_sysctl.c b/sys/kern/kern_sysctl.c index 7513ea171f3..064aca59438 100644 --- a/sys/kern/kern_sysctl.c +++ b/sys/kern/kern_sysctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: kern_sysctl.c,v 1.132 2005/11/04 21:47:57 miod Exp $ */ +/* $OpenBSD: kern_sysctl.c,v 1.133 2005/11/10 08:10:16 dlg Exp $ */ /* $NetBSD: kern_sysctl.c,v 1.17 1996/05/20 17:49:05 mrg Exp $ */ /*- @@ -1827,8 +1827,6 @@ sysctl_intrcnt(int *name, u_int namelen, void *oldp, size_t *oldlenp) return (evcount_sysctl(name, namelen, oldp, oldlenp, NULL, 0)); } -int nsensors = 0; -struct sensors_head sensors = SLIST_HEAD_INITIALIZER(&sensors); int sysctl_sensors(int *name, u_int namelen, void *oldp, size_t *oldlenp, |