From 3833f8aae3717006d99de272e96351cacd5c1bea Mon Sep 17 00:00:00 2001 From: Florian Westphal Date: Wed, 12 Jul 2006 19:27:12 +0000 Subject: [PATCH] remove fd from io_event structure --- src/ngircd/io.c | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/src/ngircd/io.c b/src/ngircd/io.c index bee798b7..36b854ab 100644 --- a/src/ngircd/io.c +++ b/src/ngircd/io.c @@ -12,7 +12,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: io.c,v 1.14 2006/05/10 17:33:36 fw Exp $"; +static char UNUSED id[] = "$Id: io.c,v 1.15 2006/07/12 19:27:12 fw Exp $"; #include #include @@ -31,7 +31,6 @@ static char UNUSED id[] = "$Id: io.c,v 1.14 2006/05/10 17:33:36 fw Exp $"; typedef struct { void (*callback)(int, short); - int fd; short what; } io_event; @@ -220,7 +219,6 @@ io_event_create(int fd, short what, void (*cbfunc) (int, short)) return false; } - i->fd = fd; i->callback = cbfunc; i->what = 0; #ifdef IO_USE_EPOLL @@ -370,7 +368,7 @@ io_close(int fd) while (select_maxfd>0) { --select_maxfd; /* find largest fd */ i = io_event_get(select_maxfd); - if (i && (i->fd >= 0)) break; + if (i && i->callback) break; } } #endif @@ -391,8 +389,8 @@ io_close(int fd) io_event_change_epoll(fd, 0, EPOLL_CTL_DEL); #endif if (i) { - memset(i, 0, sizeof(io_event)); - i->fd = -1; + i->callback = NULL; + i->what = 0; } return close(fd) == 0; } @@ -418,10 +416,10 @@ io_event_del(int fd, short what) #endif #ifdef IO_USE_SELECT if (what & IO_WANTWRITE) - FD_CLR(i->fd, &writers); + FD_CLR(fd, &writers); if (what & IO_WANTREAD) - FD_CLR(i->fd, &readers); + FD_CLR(fd, &readers); return true; #endif -- 2.39.2