summaryrefslogtreecommitdiffstats
path: root/src/libthread/iodial.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2004-12-25 21:56:33 +0000
committerrsc <devnull@localhost>2004-12-25 21:56:33 +0000
commit1544f90960275dc9211bde30329c3258e0e1bf38 (patch)
treef55e7a73c03aaa24daa7cc2ad02822b921c477f9 /src/libthread/iodial.c
parent7788fd54094693384ef5c92c475656dba8819feb (diff)
downloadplan9port-1544f90960275dc9211bde30329c3258e0e1bf38.tar.gz
plan9port-1544f90960275dc9211bde30329c3258e0e1bf38.zip
New thread library
Diffstat (limited to 'src/libthread/iodial.c')
-rw-r--r--src/libthread/iodial.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/libthread/iodial.c b/src/libthread/iodial.c
deleted file mode 100644
index 2e45cfe6..00000000
--- a/src/libthread/iodial.c
+++ /dev/null
@@ -1,24 +0,0 @@
-#include "threadimpl.h"
-
-static long
-_iodial(va_list *arg)
-{
- char *addr, *local, *dir;
- int *cdfp, fd;
-
- addr = va_arg(*arg, char*);
- local = va_arg(*arg, char*);
- dir = va_arg(*arg, char*);
- cdfp = va_arg(*arg, int*);
-
-fprint(2, "before dial\n");
- fd = dial(addr, local, dir, cdfp);
-fprint(2, "after dial\n");
- return fd;
-}
-
-int
-iodial(Ioproc *io, char *addr, char *local, char *dir, int *cdfp)
-{
- return iocall(io, _iodial, addr, local, dir, cdfp);
-}