Fix long line added in previous commit.

This commit is contained in:
Peter Wemm 2002-02-07 22:28:24 +00:00
parent 6e948886d3
commit 3953037ff8

View File

@ -127,6 +127,7 @@ linux_clone(struct thread *td, struct linux_clone_args *args)
{
int error, ff = RFPROC | RFSTOPPED;
struct proc *p2;
struct thread *td;
int exit_signal;
vm_offset_t start;
@ -166,7 +167,8 @@ linux_clone(struct thread *td, struct linux_clone_args *args)
PROC_LOCK(p2);
p2->p_sigparent = exit_signal;
PROC_UNLOCK(p2);
FIRST_THREAD_IN_PROC(p2)->td_pcb->pcb_hw.apcb_usp = (unsigned long)args->stack;
td = FIRST_THREAD_IN_PROC(p2);
td->td_pcb->pcb_hw.apcb_usp = (unsigned long)args->stack;
#ifdef DEBUG
if (ldebug(clone))