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

Function graph_print_vertices

freebsd/kern/kern_lockf.c:2091–2104  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2089}
2090
2091static void
2092graph_print_vertices(struct owner_vertex_list *set)
2093{
2094 struct owner_vertex *v;
2095
2096 printf("{ ");
2097 TAILQ_FOREACH(v, set, v_link) {
2098 printf("%d:", v->v_order);
2099 lf_print_owner(v->v_owner);
2100 if (TAILQ_NEXT(v, v_link))
2101 printf(", ");
2102 }
2103 printf(" }\n");
2104}
2105
2106#endif
2107

Callers 1

graph_add_edgeFunction · 0.85

Calls 2

lf_print_ownerFunction · 0.85
printfFunction · 0.70

Tested by

no test coverage detected