From 082c4ffea584f55622bb16406d04dbed3b6e6519 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 20 Apr 2007 11:43:43 +0000 Subject: [PATCH] Fix hard-coded 30 second limit. Unfortunately we have a lot of these select loops around - all more or less buggy. --- src/eventl.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) { -- 1.7.10.4