From: cypherpunks Date: Sun, 30 Sep 2018 14:37:11 +0000 (+0000) Subject: evloop: fix docs for threadpool_register_reply_event X-Git-Tag: tor-0.4.0.1-alpha~222^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a56451af4269235df45416a37a5e37be6e63c827;p=thirdparty%2Ftor.git evloop: fix docs for threadpool_register_reply_event Commit 6a5f62f68f2c73dbbbbddb4fa3759586f4c2b0dc ultimately didn't include the base argument, and the callback is named cb. --- diff --git a/src/lib/evloop/workqueue.c b/src/lib/evloop/workqueue.c index 5e59b48fe6..5471f87b04 100644 --- a/src/lib/evloop/workqueue.c +++ b/src/lib/evloop/workqueue.c @@ -622,8 +622,8 @@ reply_event_cb(evutil_socket_t sock, short events, void *arg) tp->reply_cb(tp); } -/** Register the threadpool tp's reply queue with the libevent - * mainloop of base. If tp is provided, it is run after +/** Register the threadpool tp's reply queue with Tor's global + * libevent mainloop. If cb is provided, it is run after * each time there is work to process from the reply queue. Return 0 on * success, -1 on failure. */ diff --git a/src/lib/evloop/workqueue.h b/src/lib/evloop/workqueue.h index da292d1f05..10d5d47464 100644 --- a/src/lib/evloop/workqueue.h +++ b/src/lib/evloop/workqueue.h @@ -63,7 +63,6 @@ replyqueue_t *threadpool_get_replyqueue(threadpool_t *tp); replyqueue_t *replyqueue_new(uint32_t alertsocks_flags); void replyqueue_process(replyqueue_t *queue); -struct event_base; int threadpool_register_reply_event(threadpool_t *tp, void (*cb)(threadpool_t *tp));