| Submitter | Juan Quintela |
|---|---|
| Date | March 11, 2010, 4:55 p.m. |
| Message ID | <435e89889409bb8742740c92a8159e05e71bd878.1268326362.git.quintela@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/47360/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/vl.c b/vl.c index f102a82..304d05c 100644 --- a/vl.c +++ b/vl.c @@ -2590,7 +2590,6 @@ void pcmcia_info(Monitor *mon) typedef struct IOHandlerRecord { int fd; - IOCanReadHandler *fd_read_poll; IOHandler *fd_read; IOHandler *fd_write; int deleted; @@ -3809,9 +3808,7 @@ void main_loop_wait(int timeout) QLIST_FOREACH(ioh, &io_handlers, next) { if (ioh->deleted) continue; - if (ioh->fd_read && - (!ioh->fd_read_poll || - ioh->fd_read_poll(ioh->opaque) != 0)) { + if (ioh->fd_read) { FD_SET(ioh->fd, &rfds); if (ioh->fd > nfds) nfds = ioh->fd;
Signed-off-by: Juan Quintela <quintela@redhat.com> --- vl.c | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-)