add this.
This commit is contained in:
parent
e7821682ea
commit
ad6638adc7
14
src/libthread/ioproc.h
Normal file
14
src/libthread/ioproc.h
Normal 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;
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user