X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fstatserv.c;h=4b80162afb48924a27a8c2b9dc440b47d15128db;hb=cd5dfe9bb7b6a784a5591d659881a3c6fb428512;hp=731bce54f1d67c5d283bfc58f713907c21250bd9;hpb=4f8aff36e000a9d90227fd30d9f9dc63e8ffad40;p=yaz-moved-to-github.git diff --git a/src/statserv.c b/src/statserv.c index 731bce5..4b80162 100644 --- a/src/statserv.c +++ b/src/statserv.c @@ -5,7 +5,7 @@ * NT threaded server code by * Chas Woodfield, Fretwell Downing Informatics. * - * $Id: statserv.c,v 1.50 2007-08-13 16:46:47 mike Exp $ + * $Id: statserv.c,v 1.52 2007-11-12 08:57:45 adam Exp $ */ /** @@ -771,7 +771,7 @@ void statserv_closedown() void __cdecl event_loop_thread (IOCHAN iochan) { - event_loop (&iochan); + iochan_event_loop (&iochan); } /* WIN32 listener */ @@ -1043,7 +1043,7 @@ static void *new_session (void *vp) control_block.one_shot = 1; if (control_block.threads) { - event_loop(&new_chan); + iochan_event_loop(&new_chan); } else { @@ -1343,7 +1343,7 @@ int statserv_start(int argc, char **argv) if (pListener == NULL) return 1; yaz_log(YLOG_DEBUG, "Entering event loop."); - return event_loop(&pListener); + return iochan_event_loop(&pListener); } static void option_copy(char *dst, const char *src)