| 867 | } |
| 868 | |
| 869 | static void close_all(void) { |
| 870 | if (cmap_handle) { |
| 871 | cmap_finalize(cmap_handle); |
| 872 | } |
| 873 | if (q_handle) { |
| 874 | quorum_finalize(q_handle); |
| 875 | } |
| 876 | if (c_handle) { |
| 877 | corosync_cfg_finalize(c_handle); |
| 878 | } |
| 879 | if (v_handle) { |
| 880 | votequorum_finalize(v_handle); |
| 881 | } |
| 882 | } |
| 883 | |
| 884 | int main (int argc, char *argv[]) { |
| 885 | const char *options = "VHaslpmfe:v:hin:o:"; |
no test coverage detected