X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=src%2Feventl.c;h=40f7a69826d0223ef7660647898e8adced8bf732;hb=4193aa864cbf4f36d264179f9be1999ce74e77e6;hp=a263c6435996b74ab6270a35ec9a0e113cb5f4ee;hpb=2ee54f76ebb2510e313a0ad34d09a23d0d9c23ae;p=pazpar2-moved-to-github.git diff --git a/src/eventl.c b/src/eventl.c index a263c64..40f7a69 100644 --- a/src/eventl.c +++ b/src/eventl.c @@ -78,8 +78,17 @@ void iochan_man_destroy(iochan_man_t *mp) { if (*mp) { + IOCHAN c; if ((*mp)->sel_thread) sel_thread_destroy((*mp)->sel_thread); + + c = (*mp)->channel_list; + while (c) + { + IOCHAN c_next = c->next; + xfree(c); + c = c_next; + } xfree(*mp); *mp = 0; } @@ -127,7 +136,7 @@ static void work_handler(void *work_data) static void run_fun(iochan_man_t man, IOCHAN p) { - if (!p->destroyed && p->this_event) + if (p->this_event) { if (man->sel_thread) { @@ -145,7 +154,7 @@ static int event_loop(iochan_man_t man, IOCHAN *iochans) { do /* loop as long as there are active associations to process */ { - IOCHAN p, nextp; + IOCHAN p, *nextp; fd_set in, out, except; int res, max; static struct timeval nullto = {0, 0}, to; @@ -155,7 +164,7 @@ static int event_loop(iochan_man_t man, IOCHAN *iochans) FD_ZERO(&out); FD_ZERO(&except); timeout = &to; /* hang on select */ - to.tv_sec = 15; + to.tv_sec = 300; to.tv_usec = 0; max = 0; for (p = *iochans; p; p = p->next) @@ -166,6 +175,8 @@ static int event_loop(iochan_man_t man, IOCHAN *iochans) p->flags = (*p->maskfun)(p); if (p->socketfun) p->fd = (*p->socketfun)(p); + if (p->max_idle && p->max_idle < to.tv_sec) + to.tv_sec = p->max_idle; if (p->fd < 0) continue; if (p->force_event) @@ -178,8 +189,6 @@ static int event_loop(iochan_man_t man, 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 (man->sel_fd != -1) { @@ -222,37 +231,35 @@ static int event_loop(iochan_man_t man, IOCHAN *iochans) int force_event = p->force_event; time_t now = time(0); - if (p->thread_users > 0) + if (p->thread_users > 0 || p->destroyed) { yaz_log(man->log_level, "eventl: skip chan=%p users=%d", p, p->thread_users); continue; } p->this_event = 0; p->force_event = 0; - if (!p->destroyed && ((p->max_idle && now - p->last_event > - p->max_idle) || force_event == EVENT_TIMEOUT)) + + if ((p->max_idle && now - p->last_event > p->max_idle) + || force_event == EVENT_TIMEOUT) { p->last_event = now; p->this_event |= EVENT_TIMEOUT; } if (p->fd >= 0) { - if (!p->destroyed && (FD_ISSET(p->fd, &in) || - force_event == EVENT_INPUT)) + if (FD_ISSET(p->fd, &in) || force_event == EVENT_INPUT) { p->last_event = now; yaz_log(YLOG_DEBUG, "Eventl input event"); p->this_event |= EVENT_INPUT; } - if (!p->destroyed && (FD_ISSET(p->fd, &out) || - force_event == EVENT_OUTPUT)) + if (FD_ISSET(p->fd, &out) || force_event == EVENT_OUTPUT) { p->last_event = now; yaz_log(YLOG_DEBUG, "Eventl output event"); p->this_event |= EVENT_OUTPUT; } - if (!p->destroyed && (FD_ISSET(p->fd, &except) || - force_event == EVENT_EXCEPT)) + if (FD_ISSET(p->fd, &except) || force_event == EVENT_EXCEPT) { p->last_event = now; p->this_event |= EVENT_EXCEPT; @@ -260,30 +267,17 @@ static int event_loop(iochan_man_t man, IOCHAN *iochans) } run_fun(man, p); } - for (p = *iochans; p; p = nextp) - { - nextp = p->next; - + for (nextp = iochans; *nextp; ) + { + IOCHAN p = *nextp; if (p->destroyed && p->thread_users == 0) { - IOCHAN tmp = p, pr; - - /* Now reset the pointers */ - if (p == *iochans) - *iochans = p->next; - else - { - for (pr = *iochans; pr; pr = pr->next) - if (pr->next == p) - break; - assert(pr); /* grave error if it weren't there */ - pr->next = p->next; - } - if (nextp == p) - nextp = p->next; - xfree(tmp); + *nextp = p->next; + xfree(p); } - } + else + nextp = &p->next; + } } while (*iochans); return 0;