X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fcollectd.h;h=e7fc4e3554f4c0c0ea90403994af186e11d4cf56;hb=83d47bfa3295f837c3fa3fa3e31855a236d43530;hp=16bde1cf2a19e4185a889033bcfc12caf3fa656d;hpb=9e0809db22aa694d9edad9dd74515d655dc70579;p=collectd.git diff --git a/src/collectd.h b/src/collectd.h index 16bde1cf..e7fc4e35 100644 --- a/src/collectd.h +++ b/src/collectd.h @@ -135,6 +135,12 @@ typedef bool _Bool; # ifndef isnan # define isnan(f) ((f) != (f)) # endif /* !defined(isnan) */ +# ifndef isfinite +# define isfinite(f) (((f) - (f)) == 0.0) +# endif +# ifndef isinf +# define isinf(f) (!isfinite(f) && !isnan(f)) +# endif #endif /* NAN_ZERO_ZERO */ /* Try really, really hard to determine endianess. Under NexentaStor 1.0.2 this @@ -221,10 +227,6 @@ typedef bool _Bool; # include #endif -#if HAVE_SENSORS_SENSORS_H -# include -#endif - #ifndef PACKAGE_NAME #define PACKAGE_NAME "collectd" #endif @@ -273,6 +275,9 @@ typedef bool _Bool; #endif #if defined(COLLECT_DEBUG) && COLLECT_DEBUG && defined(__GNUC__) && __GNUC__ +# undef strcpy +# undef strcat +# undef strtok # pragma GCC poison strcpy strcat strtok #endif @@ -284,11 +289,13 @@ typedef bool _Bool; */ #ifndef DONT_POISON_SPRINTF_YET # if defined(COLLECT_DEBUG) && COLLECT_DEBUG && defined(__GNUC__) && __GNUC__ +# undef sprintf # pragma GCC poison sprintf # endif #endif extern char hostname_g[]; extern int interval_g; +extern int timeout_g; #endif /* COLLECTD_H */