summaryrefslogtreecommitdiffstats
path: root/sys/alpha/linux
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2002-02-08 08:56:01 +0000
committerpeter <peter@FreeBSD.org>2002-02-08 08:56:01 +0000
commit3589cfc9929e9a7140446f114e94ea86c45b6398 (patch)
treee98fa20b4faea7eccefce0008eadbe917787c580 /sys/alpha/linux
parent2a6db49cc938300e82537cfbb7ff5ffa68e5ed77 (diff)
downloadFreeBSD-src-3589cfc9929e9a7140446f114e94ea86c45b6398.zip
FreeBSD-src-3589cfc9929e9a7140446f114e94ea86c45b6398.tar.gz
Bah, I managed to turn cosmetic things into real bugs. Fix shadowed
variable declarations. :-( Definately not my day today.
Diffstat (limited to 'sys/alpha/linux')
-rw-r--r--sys/alpha/linux/linux_machdep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/alpha/linux/linux_machdep.c b/sys/alpha/linux/linux_machdep.c
index 12a2160..51d68f1 100644
--- a/sys/alpha/linux/linux_machdep.c
+++ b/sys/alpha/linux/linux_machdep.c
@@ -127,7 +127,7 @@ linux_clone(struct thread *td, struct linux_clone_args *args)
{
int error, ff = RFPROC | RFSTOPPED;
struct proc *p2;
- struct thread *td;
+ struct thread *td2;
int exit_signal;
vm_offset_t start;
@@ -167,8 +167,8 @@ linux_clone(struct thread *td, struct linux_clone_args *args)
PROC_LOCK(p2);
p2->p_sigparent = exit_signal;
PROC_UNLOCK(p2);
- td = FIRST_THREAD_IN_PROC(p2);
- td->td_pcb->pcb_hw.apcb_usp = (unsigned long)args->stack;
+ td2 = FIRST_THREAD_IN_PROC(p2);
+ td2->td_pcb->pcb_hw.apcb_usp = (unsigned long)args->stack;
#ifdef DEBUG
if (ldebug(clone))
OpenPOWER on IntegriCloud