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:
parent
6683b28d78
commit
ca9a0ddf31
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=173044
@ -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();
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user