1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-19 15:33:56 +00:00

if one changes a function's arguments, one must also change the callers.

This commit is contained in:
Julian Elischer 2007-10-26 22:03:19 +00:00
parent 6683b28d78
commit ca9a0ddf31
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=173044

View File

@ -1100,7 +1100,7 @@ ithread_loop(void *arg)
CTR3(KTR_INTR, "%s: pid %d (%s) exiting", __func__,
p->p_pid, td->td_name);
free(ithd, M_ITHREAD);
kthread_exit(0);
kthread_exit();
}
/*
@ -1171,7 +1171,7 @@ ithread_loop(void *arg)
CTR3(KTR_INTR, "%s: pid %d (%s) exiting", __func__,
p->p_pid, td->td_name);
free(ithd, M_ITHREAD);
kthread_exit(0);
kthread_exit();
}
/*