From 0362d7d7377963bf24585a7f40a20dd8b727d23c Mon Sep 17 00:00:00 2001 From: John Dyson Date: Sat, 7 Dec 1996 07:44:05 +0000 Subject: [PATCH] Expunge inlines... --- sys/vm/vm_map.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c index fe51b3df50ff..52553cbad0df 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;