| 918 | } |
| 919 | |
| 920 | static void |
| 921 | print_node_attribute(gpointer name, gpointer node_data) |
| 922 | { |
| 923 | const char *value = NULL; |
| 924 | node_t *node = (node_t *) node_data; |
| 925 | |
| 926 | value = g_hash_table_lookup(node->details->attrs, name); |
| 927 | print_as(" + %-32s\t: %-10s", (char *)name, value); |
| 928 | print_attr_msg(node, node->details->running_rsc, name, value); |
| 929 | print_as("\n"); |
| 930 | } |
| 931 | |
| 932 | static void |
| 933 | print_node_summary(pe_working_set_t * data_set, gboolean operations) |
nothing calls this directly
no test coverage detected