libowfat/io_internal.h
leitner 63e070c1cb add long long buffer routines
add tai64 and tai6464 typedefs
add error message buffer routines
add io timeout routines
2003-09-05 21:09:14 +00:00

17 lines
298 B
C

#include "io.h"
#include "array.h"
typedef struct {
unsigned int wantread:1;
unsigned int wantwrite:1;
unsigned int canread:1;
unsigned int canwrite:1;
unsigned int nonblock:1;
unsigned int inuse:1;
tai6464 timeout;
} io_entry;
array io_fds;
uint64 io_wanted_fds;
array io_pollfds;