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

Function ng_dumphooks

freebsd/netgraph/ng_base.c:3352–3363  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3350}
3351
3352static void
3353ng_dumphooks(void)
3354{
3355 hook_p hook;
3356 int i = 1;
3357 mtx_lock(&ng_nodelist_mtx);
3358 SLIST_FOREACH(hook, &ng_allhooks, hk_all) {
3359 printf("[%d] ", i++);
3360 dumphook(hook, NULL, 0);
3361 }
3362 mtx_unlock(&ng_nodelist_mtx);
3363}
3364
3365static int
3366sysctl_debug_ng_dump_items(SYSCTL_HANDLER_ARGS)

Callers 1

Calls 4

dumphookFunction · 0.70
mtx_lockFunction · 0.50
printfFunction · 0.50
mtx_unlockFunction · 0.50

Tested by

no test coverage detected