diff options
author | dg <dg@FreeBSD.org> | 1995-03-30 08:55:39 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1995-03-30 08:55:39 +0000 |
commit | 3c6276368dd34f0b7c53a6fb2f72bf565f9bc6ac (patch) | |
tree | f1f430629e7afa6934fa4066d1ee780672c84417 | |
parent | 3a58344a8b4395670c3aee6e07b92a108f4dfe31 (diff) | |
download | FreeBSD-src-3c6276368dd34f0b7c53a6fb2f72bf565f9bc6ac.zip FreeBSD-src-3c6276368dd34f0b7c53a6fb2f72bf565f9bc6ac.tar.gz |
Made pmap_testbit a static function.
-rw-r--r-- | sys/amd64/amd64/pmap.c | 4 | ||||
-rw-r--r-- | 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 bfaa692..227131a 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 bfaa692..227131a 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; |