|
NAMEvm_map_submap —
create a subordinate map
SYNOPSIS#include <sys/param.h>
#include <vm/vm.h>
#include <vm/vm_map.h>
int
DESCRIPTIONThevm_map_submap () function marks the range bounded by
start and end within the map
map as being handled by a subordinate map
sub_map.
It is generally called by the kernel memory allocator. IMPLEMENTATION NOTESThis function is for internal use only.Both maps must exist. The range must have been created with vm_map_find(9) previously. No other operations may have been performed on this range before
calling this function. Only the To remove a submapping, one must first remove the range from the parent map, and then destroy the sub_map. This procedure is not recommended. RETURN VALUESThevm_map_submap () function returns
KERN_SUCCESS if successful.
Otherwise, it returns
SEE ALSOvm_map(9), vm_map_find(9)AUTHORSThis manual page was written by Bruce M Simpson <bms@spc.org>.
Visit the GSP FreeBSD Man Page Interface. |