You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
C
41 lines
1.1 KiB
C
#include <unistd.h>
|
|
#include <sys/time.h>
|
|
#include <errno.h>
|
|
#include "io_internal.h"
|
|
|
|
int64 io_canwrite() {
|
|
io_entry* e;
|
|
if (first_writeable==-1)
|
|
#ifdef HAVE_SIGIO
|
|
{
|
|
if (alt_firstwrite>=0 && (e=array_get(&io_fds,sizeof(io_entry),alt_firstwrite)) && e->canwrite) {
|
|
debug_printf(("io_canwrite: normal write queue is empty, swapping in alt write queue (starting with %ld)\n",alt_firstwrite));
|
|
first_writeable=alt_firstwrite;
|
|
alt_firstwrite=-1;
|
|
} else
|
|
return -1;
|
|
}
|
|
#else
|
|
return -1;
|
|
#endif
|
|
for (;;) {
|
|
int64 r;
|
|
e=array_get(&io_fds,sizeof(io_entry),first_writeable);
|
|
if (!e) break;
|
|
r=first_writeable;
|
|
first_writeable=e->next_write;
|
|
debug_printf(("io_canwrite: dequeue %lld from normal write queue (next is %ld)\n",r,first_writeable));
|
|
if (e->wantwrite && e->canwrite) {
|
|
#ifdef HAVE_SIGIO
|
|
e->next_write=alt_firstwrite;
|
|
alt_firstwrite=r;
|
|
debug_printf(("io_canwrite: enqueue %ld in alt write queue (next is %ld)\n",alt_firstwrite,e->next_write));
|
|
if (io_waitmode!=_SIGIO)
|
|
#endif
|
|
e->canwrite=0;
|
|
return r;
|
|
}
|
|
}
|
|
return -1;
|
|
}
|