Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/kern Give config thread more descriptive names.
details: https://anonhg.NetBSD.org/src/rev/db5804f028d4
branches: trunk
changeset: 781277:db5804f028d4
user: matt <matt%NetBSD.org@localhost>
date: Thu Aug 30 02:24:20 2012 +0000
description:
Give config thread more descriptive names.
diffstat:
sys/kern/subr_autoconf.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diffs (36 lines):
diff -r ffb7b9cb3f8f -r db5804f028d4 sys/kern/subr_autoconf.c
--- a/sys/kern/subr_autoconf.c Thu Aug 30 02:23:14 2012 +0000
+++ b/sys/kern/subr_autoconf.c Thu Aug 30 02:24:20 2012 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: subr_autoconf.c,v 1.222 2012/01/30 23:31:27 matt Exp $ */
+/* $NetBSD: subr_autoconf.c,v 1.223 2012/08/30 02:24:20 matt Exp $ */
/*
* Copyright (c) 1996, 2000 Christopher G. Demetriou
@@ -77,7 +77,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: subr_autoconf.c,v 1.222 2012/01/30 23:31:27 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: subr_autoconf.c,v 1.223 2012/08/30 02:24:20 matt Exp $");
#ifdef _KERNEL_OPT
#include "opt_ddb.h"
@@ -447,7 +447,7 @@
for (i = 0; i < interrupt_config_threads; i++) {
(void)kthread_create(PRI_NONE, 0, NULL,
- config_interrupts_thread, NULL, NULL, "config");
+ config_interrupts_thread, NULL, NULL, "configintr");
}
}
@@ -474,7 +474,7 @@
for (i = 0; i < mountroot_config_threads; i++) {
(void)kthread_create(PRI_NONE, 0, NULL,
- config_mountroot_thread, NULL, NULL, "config");
+ config_mountroot_thread, NULL, NULL, "configroot");
}
}
Home |
Main Index |
Thread Index |
Old Index