diff options
| author | christos <christos@NetBSD.org> | 2006-11-16 01:32:37 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2006-11-16 01:32:37 +0000 |
| commit | 168cd830d22e1f4a4c2bde1105f9f94d40fb870d (patch) | |
| tree | f82ce44db748b3513a12da35feca2a8d352de90f /sys/dev/sysmon/sysmon_taskq.c | |
| parent | c72ed40f2540010a7b00337d0da9266cc2092eb6 (diff) | |
__unused removal on arguments; approved by core.
Diffstat (limited to 'sys/dev/sysmon/sysmon_taskq.c')
| -rw-r--r-- | sys/dev/sysmon/sysmon_taskq.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/sysmon/sysmon_taskq.c b/sys/dev/sysmon/sysmon_taskq.c index d95f5d45f04..98fb3d4e5a5 100644 --- a/sys/dev/sysmon/sysmon_taskq.c +++ b/sys/dev/sysmon/sysmon_taskq.c @@ -1,4 +1,4 @@ -/* $NetBSD: sysmon_taskq.c,v 1.6 2006/10/12 01:31:59 christos Exp $ */ +/* $NetBSD: sysmon_taskq.c,v 1.7 2006/11/16 01:33:26 christos Exp $ */ /* * Copyright (c) 2001, 2003 Wasabi Systems, Inc. @@ -41,7 +41,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: sysmon_taskq.c,v 1.6 2006/10/12 01:31:59 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: sysmon_taskq.c,v 1.7 2006/11/16 01:33:26 christos Exp $"); #include <sys/param.h> #include <sys/malloc.h> @@ -137,7 +137,7 @@ sysmon_task_queue_fini(void) * Create the sysmon task queue execution thread. */ static void -sysmon_task_queue_create_thread(void *arg __unused) +sysmon_task_queue_create_thread(void *arg) { int error; @@ -157,7 +157,7 @@ sysmon_task_queue_create_thread(void *arg __unused) * have been queued for us. */ static void -sysmon_task_queue_thread(void *arg __unused) +sysmon_task_queue_thread(void *arg) { struct sysmon_task *st; int s; |
