From 4de628dec47d91063e3345cd60ff257e3f8f67a8 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Mon, 1 Sep 1997 02:55:50 +0000 Subject: [PATCH] Some staticized variables were still declared to be extern. --- sys/vm/vm_object.c | 6 +++--- sys/vm/vm_object.h | 4 +--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c index 27cc9c1d1ae2..9e33c721697c 100644 --- a/sys/vm/vm_object.c +++ b/sys/vm/vm_object.c @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_object.c,v 1.94 1997/06/22 15:47:16 peter Exp $ + * $Id: vm_object.c,v 1.95 1997/08/05 00:02:04 dyson Exp $ */ /* @@ -127,10 +127,10 @@ static void vm_object_cache_trim __P((void)); int vm_object_cache_max; struct object_q vm_object_cached_list; -static int vm_object_cached; +static int vm_object_cached; /* size of cached list */ struct object_q vm_object_list; struct simplelock vm_object_list_lock; -static long vm_object_count; +static long vm_object_count; /* count of all objects */ vm_object_t kernel_object; vm_object_t kmem_object; static struct vm_object kernel_object_store; diff --git a/sys/vm/vm_object.h b/sys/vm/vm_object.h index 8cf049922b3a..d6aaa00d09a9 100644 --- a/sys/vm/vm_object.h +++ b/sys/vm/vm_object.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_object.h,v 1.35 1997/02/22 09:48:29 peter Exp $ + * $Id: vm_object.h,v 1.36 1997/08/05 00:02:06 dyson Exp $ */ /* @@ -147,10 +147,8 @@ extern int vm_object_cache_max; TAILQ_HEAD(object_q, vm_object); extern struct object_q vm_object_cached_list; /* list of objects persisting */ -extern int vm_object_cached; /* size of cached list */ extern struct object_q vm_object_list; /* list of allocated objects */ -extern long vm_object_count; /* count of all objects */ /* lock for object list and count */