diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-03-30 12:18:47 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2020-03-30 12:18:47 +0100 |
commit | 4aad801ba8793825330b2112ec87a56f7675ef6e (patch) | |
tree | ac9a7eba4158cbf16221a074e390553fde774ba8 /contrib/libev | |
parent | fd787a950879f0ea0ff88194ab70e39e9e4d16cf (diff) | |
download | rspamd-4aad801ba8793825330b2112ec87a56f7675ef6e.tar.gz rspamd-4aad801ba8793825330b2112ec87a56f7675ef6e.zip |
[Minor] Add missing function
Diffstat (limited to 'contrib/libev')
-rw-r--r-- | contrib/libev/ev.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/libev/ev.c b/contrib/libev/ev.c index a9660cd22..12eafd8a4 100644 --- a/contrib/libev/ev.c +++ b/contrib/libev/ev.c @@ -5662,6 +5662,12 @@ ev_now_update_if_cheap (EV_P) EV_NOEXCEPT if (have_cheap_timer) time_update (EV_A_ 1e100); } +int +ev_active_cnt (EV_P) EV_NOEXCEPT +{ + return activecnt; +} + #if EV_MULTIPLICITY #include "ev_wrap.h" #endif |