X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fio%2Fpoll.c;h=bd481e9417a835b8f44291b87682a26d750a647d;hb=ce27b5647d5065c05db04c67e51574253275a3c2;hp=cddc3cacd266e5b80392d91af367d689da093bd6;hpb=aae40e493625a07f4ac95476664447546b28661a;p=ccan diff --git a/ccan/io/poll.c b/ccan/io/poll.c index cddc3cac..bd481e94 100644 --- a/ccan/io/poll.c +++ b/ccan/io/poll.c @@ -16,11 +16,11 @@ static struct pollfd *pollfds = NULL; static struct fd **fds = NULL; static LIST_HEAD(closing); static LIST_HEAD(always); -static struct timeabs (*nowfn)(void) = time_now; +static struct timemono (*nowfn)(void) = time_mono; -struct timeabs (*io_time_override(struct timeabs (*now)(void)))(void) +struct timemono (*io_time_override(struct timemono (*now)(void)))(void) { - struct timeabs (*old)(void) = nowfn; + struct timemono (*old)(void) = nowfn; nowfn = now; return old; } @@ -86,19 +86,19 @@ static void del_fd(struct fd *fd) } num_fds--; fd->backend_info = -1; +} - /* Closing a local socket doesn't wake poll() because other end - * has them open. See 2.6. When should I use shutdown()? - * in http://www.faqs.org/faqs/unix-faq/socket/ */ - shutdown(fd->fd, SHUT_RDWR); - - close(fd->fd); +static void destroy_listener(struct io_listener *l) +{ + close(l->fd.fd); + del_fd(&l->fd); } bool add_listener(struct io_listener *l) { if (!add_fd(&l->fd, POLLIN)) return false; + tal_add_destructor(l, destroy_listener); return true; } @@ -107,13 +107,6 @@ void remove_from_always(struct io_conn *conn) list_del_init(&conn->always); } -void backend_new_closing(struct io_conn *conn) -{ - /* In case it's on always list, remove it. */ - list_del_init(&conn->always); - list_add_tail(&closing, &conn->closing); -} - void backend_new_always(struct io_conn *conn) { /* In case it's already in always list. */ @@ -164,25 +157,28 @@ void backend_wake(const void *wait) } } -bool add_conn(struct io_conn *c) +static void destroy_conn(struct io_conn *conn) { - return add_fd(&c->fd, 0); -} + int saved_errno = errno; -static void del_conn(struct io_conn *conn) -{ + close(conn->fd.fd); del_fd(&conn->fd); + /* In case it's on always list, remove it. */ + list_del_init(&conn->always); + + /* errno saved/restored by tal_free itself. */ if (conn->finish) { - /* Saved by io_close */ - errno = conn->plan[IO_IN].arg.u1.s; + errno = saved_errno; conn->finish(conn, conn->finish_arg); } - tal_free(conn); } -void del_listener(struct io_listener *l) +bool add_conn(struct io_conn *c) { - del_fd(&l->fd); + if (!add_fd(&c->fd, 0)) + return false; + tal_add_destructor(c, destroy_conn); + return true; } static void accept_conn(struct io_listener *l) @@ -196,22 +192,6 @@ static void accept_conn(struct io_listener *l) io_new_conn(l->ctx, fd, l->init, l->arg); } -/* It's OK to miss some, as long as we make progress. */ -static bool close_conns(void) -{ - bool ret = false; - struct io_conn *conn; - - while ((conn = list_pop(&closing, struct io_conn, closing)) != NULL) { - assert(conn->plan[IO_IN].status == IO_CLOSING); - assert(conn->plan[IO_OUT].status == IO_CLOSING); - - del_conn(conn); - ret = true; - } - return ret; -} - static bool handle_always(void) { bool ret = false; @@ -244,11 +224,6 @@ void *io_loop(struct timers *timers, struct timer **expired) while (!io_loop_return) { int i, r, ms_timeout = -1; - if (close_conns()) { - /* Could have started/finished more. */ - continue; - } - if (handle_always()) { /* Could have started/finished more. */ continue; @@ -262,7 +237,7 @@ void *io_loop(struct timers *timers, struct timer **expired) assert(num_waiting); if (timers) { - struct timeabs now, first; + struct timemono now, first; now = nowfn(); @@ -274,7 +249,7 @@ void *io_loop(struct timers *timers, struct timer **expired) /* Now figure out how long to wait for the next one. */ if (timer_earliest(timers, &first)) { uint64_t next; - next = time_to_msec(time_between(first, now)); + next = time_to_msec(timemono_between(first, now)); if (next < INT_MAX) ms_timeout = next; else @@ -309,8 +284,6 @@ void *io_loop(struct timers *timers, struct timer **expired) } } - close_conns(); - ret = io_loop_return; io_loop_return = NULL;