From 539976ffdf2923d2ef4f3d76f7b441df0883240f Mon Sep 17 00:00:00 2001 From: Julian Elischer Date: Mon, 29 Oct 2007 20:45:31 +0000 Subject: [PATCH] fix typo in code normally not compiled in. --- sys/kern/kern_intr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/kern_intr.c b/sys/kern/kern_intr.c index 8539c6ef86f..17af1ee2849 100644 --- a/sys/kern/kern_intr.c +++ b/sys/kern/kern_intr.c @@ -360,7 +360,7 @@ ithread_create(const char *name, struct intr_handler *ih) ithd = malloc(sizeof(struct intr_thread), M_ITHREAD, M_WAITOK | M_ZERO); - error = kproc_kthread_create(ithread_loop, ih, &intrproc, + error = kproc_kthread_add(ithread_loop, ih, &intrproc, &td, RFSTOPPED | RFHIGHPID, 0, "intr", "%s", name); if (error)