From 7b0047e21391a949c3092bdd0ec02f2cf3ef7e92 Mon Sep 17 00:00:00 2001 From: David Greenman Date: Thu, 30 Mar 1995 08:55:39 +0000 Subject: [PATCH] Made pmap_testbit a static function. --- sys/amd64/amd64/pmap.c | 4 ++-- sys/i386/i386/pmap.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/amd64/amd64/pmap.c b/sys/amd64/amd64/pmap.c index bfaa692a18e6..227131a41790 100644 --- a/sys/amd64/amd64/pmap.c +++ b/sys/amd64/amd64/pmap.c @@ -39,7 +39,7 @@ * SUCH DAMAGE. * * from: @(#)pmap.c 7.7 (Berkeley) 5/12/91 - * $Id: pmap.c,v 1.53 1995/03/16 18:11:28 bde Exp $ + * $Id: pmap.c,v 1.54 1995/03/26 23:42:07 davidg Exp $ */ /* @@ -1794,7 +1794,7 @@ pmap_page_exists(pmap, pa) * note that the testbit/changebit routines are inline, * and a lot of things compile-time evaluate. */ -__inline boolean_t +static __inline boolean_t pmap_testbit(pa, bit) register vm_offset_t pa; int bit; diff --git a/sys/i386/i386/pmap.c b/sys/i386/i386/pmap.c index bfaa692a18e6..227131a41790 100644 --- a/sys/i386/i386/pmap.c +++ b/sys/i386/i386/pmap.c @@ -39,7 +39,7 @@ * SUCH DAMAGE. * * from: @(#)pmap.c 7.7 (Berkeley) 5/12/91 - * $Id: pmap.c,v 1.53 1995/03/16 18:11:28 bde Exp $ + * $Id: pmap.c,v 1.54 1995/03/26 23:42:07 davidg Exp $ */ /* @@ -1794,7 +1794,7 @@ pmap_page_exists(pmap, pa) * note that the testbit/changebit routines are inline, * and a lot of things compile-time evaluate. */ -__inline boolean_t +static __inline boolean_t pmap_testbit(pa, bit) register vm_offset_t pa; int bit;