summaryrefslogtreecommitdiffstats
path: root/sys/vm/vm_map.c
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2006-03-08 06:31:46 +0000
committerimp <imp@FreeBSD.org>2006-03-08 06:31:46 +0000
commitf1947eff71c8ad93627629ada8b60773f7f344e1 (patch)
treeb46519c047685e13a89653c70c9fba3fd4a9bb7c /sys/vm/vm_map.c
parent3b53f4a775a8af45de5b033339f5d3f0ab82856d (diff)
downloadFreeBSD-src-f1947eff71c8ad93627629ada8b60773f7f344e1.zip
FreeBSD-src-f1947eff71c8ad93627629ada8b60773f7f344e1.tar.gz
Remove leading __ from __(inline|const|signed|volatile). They are
obsolete. This should reduce diffs to NetBSD as well.
Diffstat (limited to 'sys/vm/vm_map.c')
-rw-r--r--sys/vm/vm_map.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c
index 23fc7b4..d57fca8 100644
--- a/sys/vm/vm_map.c
+++ b/sys/vm/vm_map.c
@@ -280,7 +280,7 @@ vm_init2(void)
vmspace_zinit, vmspace_zfini, UMA_ALIGN_PTR, UMA_ZONE_NOFREE);
}
-static __inline void
+static inline void
vmspace_dofree(struct vmspace *vm)
{
CTR1(KTR_VM, "vmspace_free: %p", vm);
@@ -560,7 +560,7 @@ vm_map_entry_create(vm_map_t map)
* Set the expected access behavior, either normal, random, or
* sequential.
*/
-static __inline void
+static inline void
vm_map_entry_set_behavior(vm_map_entry_t entry, u_char behavior)
{
entry->eflags = (entry->eflags & ~MAP_ENTRY_BEHAV_MASK) |
@@ -572,7 +572,7 @@ vm_map_entry_set_behavior(vm_map_entry_t entry, u_char behavior)
*
* Set the max_free field in a vm_map_entry.
*/
-static __inline void
+static inline void
vm_map_entry_set_max_free(vm_map_entry_t entry)
{
OpenPOWER on IntegriCloud