diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-11-25 17:00:47 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-11-25 17:00:47 -0500 |
commit | e5f2f10844dc2445f8cf2f0dc8ec92bc4ce65d63 (patch) | |
tree | fae7b809f8c8470921c1b38be572e231b0af7709 /src/common/compat_libevent.c | |
parent | b1bd30c24c4d9ee1a760c0fb28e18bc597bb0df5 (diff) | |
parent | 406ae1ba5ad529a4d0e710229dab6ed645d42b50 (diff) | |
download | tor-e5f2f10844dc2445f8cf2f0dc8ec92bc4ce65d63.tar.gz tor-e5f2f10844dc2445f8cf2f0dc8ec92bc4ce65d63.zip |
Merge remote-tracking branch 'asn/bug4312'
Diffstat (limited to 'src/common/compat_libevent.c')
-rw-r--r-- | src/common/compat_libevent.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/common/compat_libevent.c b/src/common/compat_libevent.c index 0cedef8d5e..b709b4afd6 100644 --- a/src/common/compat_libevent.c +++ b/src/common/compat_libevent.c @@ -558,6 +558,15 @@ tor_check_libevent_header_compatibility(void) #endif } +/** Wrapper around libevent's event_base_once(). Sets a + * timeout-triggered event with no associated file descriptor. */ +int +tor_event_base_once(void (*cb)(evutil_socket_t, short, void *), + void *arg, struct timeval *timer) +{ + return event_base_once(tor_libevent_get_base(), -1, EV_TIMEOUT, cb, arg, timer); +} + /* If possible, we're going to try to use Libevent's periodic timer support, since it does a pretty good job of making sure that periodic events get |