Bug #1996 » 0001-Remove-double-semi-colon.patch
| sys/kern/kern_exit.c | ||
|---|---|---|
|
static int
|
||
|
lwp_wait(struct lwp *lp)
|
||
|
{
|
||
|
struct thread *td = lp->lwp_thread;;
|
||
|
struct thread *td = lp->lwp_thread;
|
||
|
KKASSERT(lwkt_preempted_proc() != lp);
|
||
| ... | ... | |
|
void
|
||
|
lwp_dispose(struct lwp *lp)
|
||
|
{
|
||
|
struct thread *td = lp->lwp_thread;;
|
||
|
struct thread *td = lp->lwp_thread;
|
||
|
KKASSERT(lwkt_preempted_proc() != lp);
|
||
|
KKASSERT(td->td_refs == 0);
|
||