summaryrefslogtreecommitdiffstats
path: root/plugins/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/utils.h')
-rw-r--r--plugins/utils.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/utils.h b/plugins/utils.h
index 2d97634..f47d053 100644
--- a/plugins/utils.h
+++ b/plugins/utils.h
@@ -58,6 +58,19 @@ struct timeval {
58}; 58};
59#endif 59#endif
60 60
61#define OUTSIDE 0
62#define INSIDE 1
63
64typedef struct threshold_struct {
65 double start;
66 int start_infinity; /* FALSE (default) or TRUE */
67 double end;
68 int end_infinity;
69 int alert_on; /* OUTSIDE (default) or INSIDE */
70 } threshold;
71
72threshold *parse_threshold (char *);
73
61#ifndef HAVE_GETTIMEOFDAY 74#ifndef HAVE_GETTIMEOFDAY
62int gettimeofday(struct timeval *, struct timezone *); 75int gettimeofday(struct timeval *, struct timezone *);
63#endif 76#endif