commit | ad6638adc744a21b2c424ab74e2df03b42bef0fc | [log] [tgz] |
---|---|---|
author | rsc <devnull@localhost> | Thu Sep 23 21:40:21 2004 +0000 |
committer | rsc <devnull@localhost> | Thu Sep 23 21:40:21 2004 +0000 |
tree | c00948b6d18b0e97c6158a6c8653443b89d07223 | |
parent | e7821682ea0105c74f00986131cf59b07d4966cc [diff] |
add this.
diff --git a/src/libthread/ioproc.h b/src/libthread/ioproc.h new file mode 100644 index 0000000..f3a488d --- /dev/null +++ b/src/libthread/ioproc.h
@@ -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; +}; +