mirror of /home/gitosis/repositories/libowfat.git
Mirror of :pserver:cvs@cvs.fefe.de:/cvs libowfat
https://www.fefe.de/libowfat/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
556 B
19 lines
556 B
#include "io_internal.h" |
|
|
|
void io_eagain(int64 d) { |
|
io_entry* e=iarray_get(&io_fds,d); |
|
if (e) { |
|
if (e->wantread) e->canread=0; |
|
if (e->wantwrite) e->canwrite=0; |
|
#if defined(HAVE_SIGIO) |
|
if (d==alt_firstread) { |
|
debug_printf(("io_eagain: dequeueing %lld from alt read queue (next is %ld)\n",d,e->next_read)); |
|
alt_firstread=e->next_read; |
|
} |
|
if (d==alt_firstwrite) { |
|
debug_printf(("io_eagain: dequeueing %lld from alt write queue (next is %ld)\n",d,e->next_write)); |
|
alt_firstwrite=e->next_write; |
|
} |
|
#endif |
|
} |
|
}
|
|
|