diff options
author | dyson <dyson@FreeBSD.org> | 1997-12-19 09:03:37 +0000 |
---|---|---|
committer | dyson <dyson@FreeBSD.org> | 1997-12-19 09:03:37 +0000 |
commit | 6bd1f74dcf56a424893fe1175291006b3107adff (patch) | |
tree | 09b494586a427ed4a21b1017399c6c22d1198fd9 /sys/vm/vm_map.h | |
parent | 47b91b0d8abca4e003acc0ff741437c1c44deb38 (diff) | |
download | FreeBSD-src-6bd1f74dcf56a424893fe1175291006b3107adff.zip FreeBSD-src-6bd1f74dcf56a424893fe1175291006b3107adff.tar.gz |
Some performance improvements, and code cleanups (including changing our
expensive OFF_TO_IDX to btoc whenever possible.)
Diffstat (limited to 'sys/vm/vm_map.h')
-rw-r--r-- | sys/vm/vm_map.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/vm/vm_map.h b/sys/vm/vm_map.h index aa8ddb2..666205b 100644 --- a/sys/vm/vm_map.h +++ b/sys/vm/vm_map.h @@ -61,7 +61,7 @@ * any improvements or extensions that they make and grant Carnegie the * rights to redistribute these changes. * - * $Id: vm_map.h,v 1.27 1997/08/05 00:01:58 dyson Exp $ + * $Id: vm_map.h,v 1.28 1997/08/18 02:06:24 dyson Exp $ */ /* @@ -336,6 +336,8 @@ int vm_map_submap __P((vm_map_t, vm_offset_t, vm_offset_t, vm_map_t)); void vm_map_madvise __P((vm_map_t, pmap_t, vm_offset_t, vm_offset_t, int)); void vm_map_simplify_entry __P((vm_map_t, vm_map_entry_t)); void vm_init2 __P((void)); +int vm_uiomove __P((vm_map_t, vm_object_t, off_t, int, vm_offset_t)); +void vm_freeze_copyopts __P((vm_object_t, vm_pindex_t, vm_pindex_t)); #endif #endif /* _VM_MAP_ */ |