From a58b0e4b04654a202d0cb6e4737886810c1249b2 Mon Sep 17 00:00:00 2001 From: Jack Moffitt Date: Tue, 5 May 2009 13:29:01 -0600 Subject: [PATCH] Patch to fix select time values from xue yong zhi applied. --- src/event.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/event.c b/src/event.c index 556b672..0b6949e 100644 --- a/src/event.c +++ b/src/event.c @@ -84,6 +84,7 @@ void xmpp_run_once(xmpp_ctx_t *ctx, const unsigned long timeout) int towrite; char buf[4096]; uint64_t next; + long usec; if (ctx->loop_status == XMPP_LOOP_QUIT) return; ctx->loop_status = XMPP_LOOP_RUNNING; @@ -178,8 +179,9 @@ void xmpp_run_once(xmpp_ctx_t *ctx, const unsigned long timeout) to be called */ next = handler_fire_timed(ctx); - tv.tv_sec = 0; - tv.tv_usec = ((next < timeout) ? next : timeout) * 1000; + usec = ((next < timeout) ? next : timeout) * 1000; + tv.tv_sec = usec / 1000000; + tv.tv_usec = usec % 1000000; FD_ZERO(&rfds); FD_ZERO(&wfds);