Documentation update and miscellaneous code cleanup

This commit is contained in:
Ian Barwick
2016-09-30 09:30:22 +09:00
parent c3971513b6
commit 46500e1408
5 changed files with 91 additions and 83 deletions

View File

@@ -174,31 +174,20 @@ typedef struct
int node_status;
} t_node_status_rec;
// for each node, list of statuses for other nodes
// output of "cluster show"
typedef struct
{
int node_id;
char node_name[MAXLEN];
t_node_status_rec **node_status_list;
} t_node_status_matrix_rec;
} t_node_matrix_rec;
// points to the output of "cluster matrix" on each node
typedef struct
{
int node_id;
char node_name[MAXLEN];
t_node_status_matrix_rec **matrix_list_rec;
t_node_matrix_rec **matrix_list_rec;
} t_node_status_cube;
// not really needed
typedef struct
{
int length;
t_node_status_matrix_rec **matrix_rec_list;
} t_node_status_matrix;
#endif