| 3350 | } |
| 3351 | |
| 3352 | static void |
| 3353 | ng_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 | |
| 3365 | static int |
| 3366 | sysctl_debug_ng_dump_items(SYSCTL_HANDLER_ARGS) |
no test coverage detected