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

Function new_unrhdr

freebsd/kern/subr_unit.c:359–367  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

357 */
358
359struct unrhdr *
360new_unrhdr(int low, int high, struct mtx *mutex)
361{
362 struct unrhdr *uh;
363
364 uh = Malloc(sizeof *uh);
365 init_unrhdr(uh, low, high, mutex);
366 return (uh);
367}
368
369void
370delete_unrhdr(struct unrhdr *uh)

Callers 13

vpid_initFunction · 0.85
pts_initFunction · 0.85
mqfs_fileno_initFunction · 0.85
mainFunction · 0.85
cpuset_thread0Function · 0.85
soaio_initFunction · 0.85
aio_onceonlyFunction · 0.85
dmar_attachFunction · 0.85
if_clone_allocFunction · 0.85
tuntapmodeventFunction · 0.85
vnet_ng_iface_initFunction · 0.85
ng_device_mod_eventFunction · 0.85

Calls 1

init_unrhdrFunction · 0.85

Tested by

no test coverage detected