summaryrefslogtreecommitdiff
path: root/sys/dev/sysmon/sysmon_taskq.c
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2003-09-06 23:28:30 +0000
committerchristos <christos@NetBSD.org>2003-09-06 23:28:30 +0000
commit5d43dc85d6a68b8570cf139e2d3cb3deeebb3190 (patch)
treebcbede97517c74a77b7fa2fbc719c81bfb8c20b5 /sys/dev/sysmon/sysmon_taskq.c
parentb5afd1a527da3a49b880ccaff2f95d003214a365 (diff)
Rename the thread command name so that it fits on top's display.
Diffstat (limited to 'sys/dev/sysmon/sysmon_taskq.c')
-rw-r--r--sys/dev/sysmon/sysmon_taskq.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/sysmon/sysmon_taskq.c b/sys/dev/sysmon/sysmon_taskq.c
index 80dd95623e7..b6bf81d671f 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.2 2003/07/14 15:47:28 lukem Exp $ */
+/* $NetBSD: sysmon_taskq.c,v 1.3 2003/09/06 23:28:30 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.2 2003/07/14 15:47:28 lukem Exp $");
+__KERNEL_RCSID(0, "$NetBSD: sysmon_taskq.c,v 1.3 2003/09/06 23:28:30 christos Exp $");
#include <sys/param.h>
#include <sys/malloc.h>
@@ -142,7 +142,7 @@ sysmon_task_queue_create_thread(void *arg)
int error;
error = kthread_create1(sysmon_task_queue_thread, NULL,
- &sysmon_task_queue_proc, "sysmon taskq");
+ &sysmon_task_queue_proc, "sysmon");
if (error) {
printf("Unable to create sysmon task queue thread, "
"error = %d\n", error);