X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fcollectd.h;h=8849b30b221ffa776e6e0303acab8b9919e20b02;hb=8341769294c500d8b0aa8e689aa0cfc72a63a09b;hp=16bde1cf2a19e4185a889033bcfc12caf3fa656d;hpb=9e0809db22aa694d9edad9dd74515d655dc70579;p=collectd.git diff --git a/src/collectd.h b/src/collectd.h index 16bde1cf..8849b30b 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 @@ -273,6 +279,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 +293,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 */