summaryrefslogtreecommitdiff
path: root/ratelimit.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-01-29 04:42:57 +0100
committerLennart Poettering <lennart@poettering.net>2010-01-29 04:42:57 +0100
commit1e2e81336b2d7691d51a6f3e82df9ae20c22aee1 (patch)
treeeedbc1b5b0d24efcc6437f987efa4fbdf9b5a986 /ratelimit.h
parentc20cae324d93e7fcdb8618e37c3ac377d87edb97 (diff)
ratelimit start requests
Diffstat (limited to 'ratelimit.h')
-rw-r--r--ratelimit.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/ratelimit.h b/ratelimit.h
new file mode 100644
index 0000000000..7f018389c3
--- /dev/null
+++ b/ratelimit.h
@@ -0,0 +1,36 @@
+/*-*- Mode: C; c-basic-offset: 8 -*-*/
+
+#ifndef fooratelimithfoo
+#define fooratelimithfoo
+
+#include "util.h"
+
+typedef struct RateLimit {
+ usec_t interval;
+ unsigned burst;
+ unsigned n_printed, n_missed;
+ usec_t begin;
+} RateLimit;
+
+#define RATELIMIT_DEFINE(_name, _interval, _burst) \
+ RateLimit _name = { \
+ .interval = (_interval), \
+ .burst = (_burst), \
+ .n_printed = 0, \
+ .n_missed = 0, \
+ .begin = 0 \
+ }
+
+#define RATELIMIT_INIT(v, _interval, _burst) \
+ do { \
+ RateLimit *r = &(v); \
+ r->interval = (_interval); \
+ r->burst = (_burst); \
+ r->n_printed = 0; \
+ r->n_missed = 0; \
+ r->begin = 0; \
+ } while (false);
+
+bool ratelimit_test(RateLimit *r);
+
+#endif