aboutsummaryrefslogtreecommitdiff
path: root/src/libthread/texec.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libthread/texec.c')
-rw-r--r--src/libthread/texec.c45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/libthread/texec.c b/src/libthread/texec.c
deleted file mode 100644
index c9682e35..00000000
--- a/src/libthread/texec.c
+++ /dev/null
@@ -1,45 +0,0 @@
-#include <lib9.h>
-#include <thread.h>
-extern int _threaddebuglevel;
-
-void
-doexec(void *v)
-{
- int fd[3];
- char **argv = v;
-
- fd[0] = dup(0, -1);
- fd[1] = dup(1, -1);
- fd[2] = dup(2, -1);
- threadexec(nil, fd, argv[0], argv);
- print("exec failed: %r\n");
- sendp(threadwaitchan(), nil);
- threadexits(nil);
-}
-
-void
-threadmain(int argc, char **argv)
-{
- Channel *c;
- Waitmsg *w;
- int (*mk)(void(*)(void*), void*, uint);
-
- mk = threadcreate;
- ARGBEGIN{
- case 'D':
- _threaddebuglevel = ~0;
- break;
- case 'p':
- mk = proccreate;
- break;
- }ARGEND
-
- c = threadwaitchan();
- mk(doexec, argv, 8192);
- w = recvp(c);
- if(w == nil)
- print("exec/recvp failed: %r\n");
- else
- print("%d %lud %lud %lud %s\n", w->pid, w->time[0], w->time[1], w->time[2], w->msg);
- threadexits(nil);
-}