add this.

This commit is contained in:
rsc 2004-09-23 21:40:21 +00:00
parent e7821682ea
commit ad6638adc7

14
src/libthread/ioproc.h Normal file
View file

@ -0,0 +1,14 @@
#define ioproc_arg(io, type) (va_arg((io)->arg, type))
struct Ioproc
{
int tid;
Channel *c, *creply;
int inuse;
long (*op)(va_list*);
va_list arg;
long ret;
char err[ERRMAX];
Ioproc *next;
};