X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fcommon.h;h=6682e1c852ffd3328253f347a54fa23de78f630b;hb=6f42db1a14f449f99963191f372c61d418bc8a08;hp=113f044086bd71803512d19df64e6b92a0de2b10;hpb=15f09880316647c8887953acbeaf551f32a7e0a9;p=collectd.git diff --git a/src/common.h b/src/common.h index 113f0440..6682e1c8 100644 --- a/src/common.h +++ b/src/common.h @@ -222,6 +222,13 @@ int timeval_cmp (struct timeval tv0, struct timeval tv1, struct timeval *delta); (tv).tv_usec = (tv).tv_usec % 1000000; \ } while (0) +/* make sure tv_sec stores less than a second */ +#define NORMALIZE_TIMESPEC(tv) \ + do { \ + (tv).tv_sec += (tv).tv_nsec / 1000000000; \ + (tv).tv_nsec = (tv).tv_nsec % 1000000000; \ + } while (0) + int check_create_dir (const char *file_orig); #ifdef HAVE_LIBKSTAT @@ -246,14 +253,14 @@ int format_name (char *ret, int ret_len, const char *hostname, const char *plugin, const char *plugin_instance, const char *type, const char *type_instance); -#define FORMAT_VL(ret, ret_len, vl, ds) \ +#define FORMAT_VL(ret, ret_len, vl) \ format_name (ret, ret_len, (vl)->host, (vl)->plugin, (vl)->plugin_instance, \ - (ds)->type, (vl)->type_instance) + (vl)->type, (vl)->type_instance) int parse_identifier (char *str, char **ret_host, char **ret_plugin, char **ret_plugin_instance, char **ret_type, char **ret_type_instance); -int parse_value (const char *value, value_t *ret_value, const data_source_t ds); +int parse_value (const char *value, value_t *ret_value, int ds_type); int parse_values (char *buffer, value_list_t *vl, const data_set_t *ds); #if !HAVE_GETPWNAM_R