| 3337 | } |
| 3338 | |
| 3339 | static void |
| 3340 | ng_dumpnodes(void) |
| 3341 | { |
| 3342 | node_p node; |
| 3343 | int i = 1; |
| 3344 | mtx_lock(&ng_nodelist_mtx); |
| 3345 | SLIST_FOREACH(node, &ng_allnodes, nd_all) { |
| 3346 | printf("[%d] ", i++); |
| 3347 | dumpnode(node, NULL, 0); |
| 3348 | } |
| 3349 | mtx_unlock(&ng_nodelist_mtx); |
| 3350 | } |
| 3351 | |
| 3352 | static void |
| 3353 | ng_dumphooks(void) |
no test coverage detected