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

Function db_map_equal

freebsd/ddb/db_break.c:299–305  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

297 */
298
299bool
300db_map_equal(vm_map_t map1, vm_map_t map2)
301{
302 return ((map1 == map2) ||
303 ((map1 == NULL) && (map2 == kernel_map)) ||
304 ((map1 == kernel_map) && (map2 == NULL)));
305}
306
307bool
308db_map_current(vm_map_t map)

Callers 5

db_set_watchpointFunction · 0.85
db_delete_watchpointFunction · 0.85
db_find_watchpointFunction · 0.85
db_delete_breakpointFunction · 0.85
db_find_breakpointFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected