/usr/include/conflict_tree.h is in libarmci-mpi-dev 0.0~git20160222-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | /*
* Copyright (C) 2010. See COPYRIGHT in top-level directory.
*/
#ifndef _CONFLICT_TREE_H
#define _CONFLICT_TREE_H
#include <armci_internals.h>
struct ctree_node_s {
uint8_t *lo;
uint8_t *hi;
int height;
struct ctree_node_s *parent;
struct ctree_node_s *left;
struct ctree_node_s *right;
};
typedef struct ctree_node_s * ctree_t;
extern const ctree_t CTREE_EMPTY;
int ctree_insert(ctree_t *root, uint8_t *lo, uint8_t *hi);
ctree_t ctree_locate(ctree_t root, uint8_t *lo, uint8_t *hi);
void ctree_destroy(ctree_t *root);
void ctree_print(ctree_t root);
#endif /* _CONFLICT_TREE_H */
|