diff options
author | dyson <dyson@FreeBSD.org> | 1996-05-19 07:36:50 +0000 |
---|---|---|
committer | dyson <dyson@FreeBSD.org> | 1996-05-19 07:36:50 +0000 |
commit | d3600176f48ca801e31f738ce5c37c51e3b30fe3 (patch) | |
tree | d5aabcba7719875b5a0f874d310c6f63ca671595 /sys/vm/vm_map.h | |
parent | 7959948e53f05489f9a248339725ac7918aa2968 (diff) | |
download | FreeBSD-src-d3600176f48ca801e31f738ce5c37c51e3b30fe3.zip FreeBSD-src-d3600176f48ca801e31f738ce5c37c51e3b30fe3.tar.gz |
Initial support for mincore and madvise. Both are almost fully
supported, except madvise does not page in with MADV_WILLNEED, and
MADV_DONTNEED doesn't force dirty pages out.
Diffstat (limited to 'sys/vm/vm_map.h')
-rw-r--r-- | sys/vm/vm_map.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/vm/vm_map.h b/sys/vm/vm_map.h index 0f800bf..3ba8375 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.11 1996/01/19 03:59:55 dyson Exp $ + * $Id: vm_map.h,v 1.12 1996/01/30 23:02:35 mpp Exp $ */ /* @@ -236,6 +236,7 @@ int vm_map_remove __P((vm_map_t, vm_offset_t, vm_offset_t)); void vm_map_simplify __P((vm_map_t, vm_offset_t)); void vm_map_startup __P((void)); 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)); #endif #endif /* _VM_MAP_ */ |