GC an unused variable in cpu_fork().

This commit is contained in:
Benno Rice 2002-02-28 08:48:58 +00:00
parent 6764eb8e7b
commit 3301d20ad9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=91477
2 changed files with 0 additions and 2 deletions

View File

@ -125,7 +125,6 @@ cpu_fork(struct thread *td1, struct proc *p2, struct thread *td2, int flags)
struct proc *p1;
struct trapframe *tf;
struct callframe *cf;
struct switchframe *sf;
struct pcb *pcb;
KASSERT(td1 == curthread || td1 == &thread0,

View File

@ -125,7 +125,6 @@ cpu_fork(struct thread *td1, struct proc *p2, struct thread *td2, int flags)
struct proc *p1;
struct trapframe *tf;
struct callframe *cf;
struct switchframe *sf;
struct pcb *pcb;
KASSERT(td1 == curthread || td1 == &thread0,