[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[tor-commits] [tor/maint-0.2.2] The first argument for a libevent callback should be evutil_socket_t
commit 1e69c60dccc358a7146c2b5e7825ea729498b41b
Author: Nick Mathewson <nickm@xxxxxxxxxxxxxx>
Date: Mon May 23 01:12:00 2011 -0400
The first argument for a libevent callback should be evutil_socket_t
---
src/common/procmon.c | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/common/procmon.c b/src/common/procmon.c
index cee956a..bd25bc1 100644
--- a/src/common/procmon.c
+++ b/src/common/procmon.c
@@ -34,7 +34,7 @@ typedef int pid_t;
/* Currently we need to poll in some way on all systems. */
#ifdef PROCMON_POLLS
-static void tor_process_monitor_poll_cb(int unused1, short unused2,
+static void tor_process_monitor_poll_cb(evutil_socket_t unused1, short unused2,
void *procmon_);
#endif
@@ -232,7 +232,8 @@ tor_process_monitor_new(struct event_base *base,
/** Libevent callback to poll for the existence of the process
* monitored by <b>procmon_</b>. */
static void
-tor_process_monitor_poll_cb(int unused1, short unused2, void *procmon_)
+tor_process_monitor_poll_cb(evutil_socket_t unused1, short unused2,
+ void *procmon_)
{
tor_process_monitor_t *procmon = (tor_process_monitor_t *)(procmon_);
int its_dead_jim;
_______________________________________________
tor-commits mailing list
tor-commits@xxxxxxxxxxxxxxxxxxxx
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits