diff options
author | 2003-06-01 00:22:12 +0000 | |
---|---|---|
committer | 2003-06-01 00:22:12 +0000 | |
commit | 7c40d0c759f1f9f2fb91d2adaa973629f278f93e (patch) | |
tree | d56406e07f4c47f055a88aa60de1b6dad4e48fa3 | |
parent | Partial mvme88k sets sync. May contain a few innacuracies, but will help (diff) | |
download | wireguard-openbsd-7c40d0c759f1f9f2fb91d2adaa973629f278f93e.tar.xz wireguard-openbsd-7c40d0c759f1f9f2fb91d2adaa973629f278f93e.zip |
Remove unused variable.
-rw-r--r-- | sys/arch/mvme88k/mvme88k/vm_machdep.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/mvme88k/mvme88k/vm_machdep.c b/sys/arch/mvme88k/mvme88k/vm_machdep.c index 3e635e3add9..40e50273754 100644 --- a/sys/arch/mvme88k/mvme88k/vm_machdep.c +++ b/sys/arch/mvme88k/mvme88k/vm_machdep.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vm_machdep.c,v 1.50 2003/05/30 20:47:53 miod Exp $ */ +/* $OpenBSD: vm_machdep.c,v 1.51 2003/06/01 00:22:12 miod Exp $ */ /* * Copyright (c) 1998 Steve Murphree, Jr. @@ -64,7 +64,6 @@ #include <machine/board.h> #include <machine/cmmu.h> #include <machine/cpu.h> -#include <machine/cpu_number.h> #include <machine/locore.h> #include <machine/trap.h> @@ -98,7 +97,6 @@ cpu_fork(p1, p2, stack, stacksize, func, arg) void *arg; { struct switchframe *p2sf; - int cpu; struct ksigframe { void (*func)(void *); void *proc; @@ -107,7 +105,6 @@ cpu_fork(p1, p2, stack, stacksize, func, arg) extern void proc_trampoline(void); extern void save_u_area(struct proc *, vm_offset_t); - cpu = cpu_number(); /* savectx(p1->p_addr->u_pcb); */ |