| 260 | } |
| 261 | |
| 262 | void |
| 263 | cib_cleanup(void) |
| 264 | { |
| 265 | crm_peer_destroy(); |
| 266 | if (local_notify_queue) { |
| 267 | g_hash_table_destroy(local_notify_queue); |
| 268 | } |
| 269 | g_hash_table_destroy(config_hash); |
| 270 | g_hash_table_destroy(client_list); |
| 271 | free(cib_our_uname); |
| 272 | free(channel1); |
| 273 | free(channel2); |
| 274 | free(channel3); |
| 275 | free(channel4); |
| 276 | free(channel5); |
| 277 | } |
| 278 | |
| 279 | unsigned long cib_num_ops = 0; |
| 280 | const char *cib_stat_interval = "10min"; |
no test coverage detected