aboutsummaryrefslogtreecommitdiff
path: root/src/libthread/ioproc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libthread/ioproc.h')
-rw-r--r--src/libthread/ioproc.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/libthread/ioproc.h b/src/libthread/ioproc.h
deleted file mode 100644
index f3a488d3..00000000
--- a/src/libthread/ioproc.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#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;
-};
-