From: Adam Dickmeiss Date: Fri, 20 Apr 2007 11:43:43 +0000 (+0000) Subject: Fix hard-coded 30 second limit. Unfortunately we have a lot of X-Git-Tag: PAZPAR2.1.0.0~248 X-Git-Url: http://git.indexdata.com/?a=commitdiff_plain;h=082c4ffea584f55622bb16406d04dbed3b6e6519;p=pazpar2-moved-to-github.git Fix hard-coded 30 second limit. Unfortunately we have a lot of these select loops around - all more or less buggy. --- diff --git a/src/eventl.c b/src/eventl.c index c29d98c..9e44611 100644 --- a/src/eventl.c +++ b/src/eventl.c @@ -1,4 +1,4 @@ -/* $Id: eventl.c,v 1.5 2007-04-10 08:48:56 adam Exp $ +/* $Id: eventl.c,v 1.6 2007-04-20 11:43:43 adam Exp $ Copyright (c) 2006-2007, Index Data. This file is part of Pazpar2. @@ -100,6 +100,8 @@ int event_loop(IOCHAN *iochans) FD_SET(p->fd, &except); if (p->fd > max) max = p->fd; + if (p->max_idle && p->max_idle < to.tv_sec) + to.tv_sec = p->max_idle; } if ((res = select(max + 1, &in, &out, &except, timeout)) < 0) {