From 8cd9323a1b3d9a45ce0883391a147f0bf2cd239a Mon Sep 17 00:00:00 2001 From: leitner Date: Fri, 5 Sep 2003 21:29:05 +0000 Subject: [PATCH] add waituntil and waituntil2 (internal) --- io/io_waituntil.c | 15 +++++++++++++++ io/io_waituntil2.c | 39 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 io/io_waituntil.c create mode 100644 io/io_waituntil2.c diff --git a/io/io_waituntil.c b/io/io_waituntil.c new file mode 100644 index 0000000..3f16e61 --- /dev/null +++ b/io/io_waituntil.c @@ -0,0 +1,15 @@ +#include +#include +#include +#include +#include "io_internal.h" +#include "safemult.h" + +void io_waituntil(tai6464 t) { + uint64 x,y; + tai6464 now; + taia_now(&now); + if (!umult64(now.sec.x,1000,&x) || (y=x+now.nano/10000000) +#include +#include +#include +#include "io_internal.h" + +int64 io_waituntil2(int64 milliseconds) { + struct pollfd* p; + long i,r; + if (!io_wanted_fds) return 0; + for (i=r=0; icanread=e->canwrite=0; + if (e->wantread || e->wantwrite) { + struct pollfd* p; + if ((p=array_allocate(&io_pollfds,sizeof(struct pollfd),r))) { + p->fd=i; + p->events=(e->wantread?POLLIN:0) + (e->wantwrite?POLLOUT:0); + ++r; + } else + return -1; + } + } + p=array_start(&io_pollfds); +again: + while ((i=poll(array_start(&io_pollfds),r,milliseconds))==0); + if (i==-1) { + if (errno==EINTR) goto again; + return -1; + } + for (i=0; ifd); + if (p->revents&POLLIN) e->canread=1; + if (p->revents&POLLOUT) e->canwrite=1; + p++; + } + return i; +}