0001-Remove-double-semi-colon.patch
| b/sys/kern/kern_exit.c | ||
|---|---|---|
| 686 | 686 |
static int |
| 687 | 687 |
lwp_wait(struct lwp *lp) |
| 688 | 688 |
{
|
| 689 |
struct thread *td = lp->lwp_thread;;
|
|
| 689 |
struct thread *td = lp->lwp_thread; |
|
| 690 | 690 | |
| 691 | 691 |
KKASSERT(lwkt_preempted_proc() != lp); |
| 692 | 692 | |
| ... | ... | |
| 724 | 724 |
void |
| 725 | 725 |
lwp_dispose(struct lwp *lp) |
| 726 | 726 |
{
|
| 727 |
struct thread *td = lp->lwp_thread;;
|
|
| 727 |
struct thread *td = lp->lwp_thread; |
|
| 728 | 728 | |
| 729 | 729 |
KKASSERT(lwkt_preempted_proc() != lp); |
| 730 | 730 |
KKASSERT(td->td_refs == 0); |
| 731 |
- |
|