1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

fix typo in code normally not compiled in.

This commit is contained in:
Julian Elischer 2007-10-29 20:45:31 +00:00
parent a6f3c1e3f3
commit 539976ffdf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=173153

View File

@ -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)