bug fixing time

This commit is contained in:
Felix von Leitner 2003-11-06 20:54:59 +00:00
parent d0cc758bf8
commit 9807242cbb
1 changed files with 2 additions and 2 deletions

View File

@ -101,12 +101,12 @@ int64 io_waituntil2(int64 milliseconds) {
if (e->wantread) y[n].revents=POLLIN; else
if (e->wantwrite) y[n].revents=POLLOUT;
}
if (!e->canread && (y[n].revents==POLLIN)) {
if (!e->canread && (y[n].revents&POLLIN)) {
e->canread=1;
e->next_read=first_readable;
first_readable=y[n].fd;
}
if (!e->canwrite && (y[n].revents==POLLOUT)) {
if (!e->canwrite && (y[n].revents&POLLOUT)) {
e->canwrite=1;
e->next_write=first_writeable;
first_writeable=y[i].fd;