| 2089 | } |
| 2090 | |
| 2091 | static void |
| 2092 | graph_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 |
no test coverage detected