X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=src%2Feventl.c;h=9e446119b4fa24c31b3b83083dc6f2f525b702e9;hb=082c4ffea584f55622bb16406d04dbed3b6e6519;hp=324dca194871a636a4804bb6890a004599453839;hpb=fe3383c0559a453df1e5076fc6faac6d1a11685c;p=pazpar2-moved-to-github.git diff --git a/src/eventl.c b/src/eventl.c index 324dca1..9e44611 100644 --- a/src/eventl.c +++ b/src/eventl.c @@ -1,17 +1,42 @@ +/* $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. + +Pazpar2 is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 2, or (at your option) any later +version. + +Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with Pazpar2; see the file LICENSE. If not, write to the +Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA +02111-1307, USA. + */ + /* - * ParaZ - a simple tool for harvesting performance data for parallel - * operations using Z39.50. + * Based on ParaZ - a simple tool for harvesting performance data for + * parallel operations using Z39.50. * Copyright (c) 2000-2004 Index Data ApS * See LICENSE file for details. */ /* - * $Id: eventl.c,v 1.1 2006-12-20 20:47:16 quinn Exp $ * Based on revision YAZ' server/eventl.c 1.29. */ #include #include + +#if HAVE_CONFIG_H +#include +#endif + #ifdef WIN32 #include #else @@ -75,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) {