#ifndef UCS_STATS_FD_H_
#define UCS_STATS_FD_H_
#include <stdint.h>
#include <ucs/sys/compiler_def.h>
BEGIN_C_DECLS
typedef uint64_t ucs_stats_counter_t;
typedef struct ucs_stats_class ucs_stats_class_t;
typedef struct ucs_stats_node ucs_stats_node_t;
typedef struct ucs_stats_filter_node ucs_stats_filter_node_t;
typedef enum {
UCS_STATS_FULL,
UCS_STATS_FULL_AGG,
UCS_STATS_SUMMARY,
UCS_STATS_LAST
} ucs_stats_formats_t;
extern const char *ucs_stats_formats_names[];
ucs_stats_node_t * ucs_stats_get_root(void);
END_C_DECLS
#endif