diff options
author | phk <phk@FreeBSD.org> | 1997-11-07 08:53:44 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1997-11-07 08:53:44 +0000 |
commit | 4d268889365c1d9414bbca2f6c63d87db74ec37b (patch) | |
tree | 6993a0a1b7a3687b97ad7a5a073bb465e89eb411 /sys/vm/vm_glue.c | |
parent | e4fdd132492fc7a4aaa448a72f13f3344f287ab1 (diff) | |
download | FreeBSD-src-4d268889365c1d9414bbca2f6c63d87db74ec37b.zip FreeBSD-src-4d268889365c1d9414bbca2f6c63d87db74ec37b.tar.gz |
Remove a bunch of variables which were unused both in GENERIC and LINT.
Found by: -Wunused
Diffstat (limited to 'sys/vm/vm_glue.c')
-rw-r--r-- | sys/vm/vm_glue.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/vm/vm_glue.c b/sys/vm/vm_glue.c index 7ce32d4..fcf3e70 100644 --- a/sys/vm/vm_glue.c +++ b/sys/vm/vm_glue.c @@ -59,7 +59,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_glue.c,v 1.65 1997/08/21 20:33:42 bde Exp $ + * $Id: vm_glue.c,v 1.66 1997/09/01 03:17:16 bde Exp $ */ #include "opt_rlimit.h" @@ -205,8 +205,6 @@ vm_fork(p1, p2, flags) int flags; { register struct user *up; - int i; - pmap_t pvp; if (flags & RFMEM) { p2->p_vmspace = p1->p_vmspace; @@ -285,7 +283,6 @@ void faultin(p) struct proc *p; { - vm_offset_t i; int s; if ((p->p_flag & P_INMEM) == 0) { @@ -458,8 +455,6 @@ static void swapout(p) register struct proc *p; { - pmap_t pmap = &p->p_vmspace->vm_pmap; - int i; #if defined(SWAP_DEBUG) printf("swapping out %d\n", p->p_pid); |