MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vm_map_entry_succ

Function vm_map_entry_succ

freebsd/vm/vm_map.h:495–507  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

493}
494
495static inline vm_map_entry_t
496vm_map_entry_succ(vm_map_entry_t entry)
497{
498 vm_map_entry_t after;
499
500 after = entry->right;
501 if (after->left->start > entry->start) {
502 do
503 after = after->left;
504 while (after->left != entry);
505 }
506 return (after);
507}
508
509#define VM_MAP_ENTRY_FOREACH(it, map) \
510 for ((it) = vm_map_entry_first(map); \

Callers 15

shm_mmap_largeFunction · 0.85
kern_munmapFunction · 0.85
kern_mincoreFunction · 0.85
vm_map_insertFunction · 0.85
vm_map_lookup_clip_startFunction · 0.85
vm_map_protectFunction · 0.85
vm_map_madviseFunction · 0.85
vm_map_inheritFunction · 0.85
vm_map_unwireFunction · 0.85
vm_map_wire_lockedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected