diff options
author | dyson <dyson@FreeBSD.org> | 1996-12-07 07:44:05 +0000 |
---|---|---|
committer | dyson <dyson@FreeBSD.org> | 1996-12-07 07:44:05 +0000 |
commit | 86b1c9f6b984e009524e43ee4b346d0b494c839a (patch) | |
tree | a7b625dcf2856b202eac103a3ebbfde741462513 /sys/vm | |
parent | ece891c280daf041506582842120ecb380bb0dd1 (diff) | |
download | FreeBSD-src-86b1c9f6b984e009524e43ee4b346d0b494c839a.zip FreeBSD-src-86b1c9f6b984e009524e43ee4b346d0b494c839a.tar.gz |
Expunge inlines...
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/vm_map.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c index fe51b3d..52553cb 100644 --- a/sys/vm/vm_map.c +++ b/sys/vm/vm_map.c @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_map.c,v 1.58 1996/11/30 22:41:47 dyson Exp $ + * $Id: vm_map.c,v 1.60 1996/12/07 06:19:37 dyson Exp $ */ /* @@ -166,7 +166,7 @@ static void _vm_map_clip_end __P((vm_map_t, vm_map_entry_t, vm_offset_t)); static void _vm_map_clip_start __P((vm_map_t, vm_map_entry_t, vm_offset_t)); static vm_map_entry_t vm_map_entry_create __P((vm_map_t)); static void vm_map_entry_delete __P((vm_map_t, vm_map_entry_t)); -static __inline void vm_map_entry_dispose __P((vm_map_t, vm_map_entry_t)); +static void vm_map_entry_dispose __P((vm_map_t, vm_map_entry_t)); static void vm_map_entry_unwire __P((vm_map_t, vm_map_entry_t)); static void vm_map_copy_entry __P((vm_map_t, vm_map_t, vm_map_entry_t, vm_map_entry_t)); @@ -1707,7 +1707,7 @@ vm_map_clean(map, start, end, syncio, invalidate) * The map in question should be locked. * [This is the reason for this routine's existence.] */ -static __inline void +static void vm_map_entry_unwire(map, entry) vm_map_t map; register vm_map_entry_t entry; @@ -1721,7 +1721,7 @@ vm_map_entry_unwire(map, entry) * * Deallocate the given entry from the target map. */ -static __inline void +static void vm_map_entry_delete(map, entry) register vm_map_t map; register vm_map_entry_t entry; |