aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/plumb/match.c
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2004-02-29 22:42:33 +0000
committerrsc <devnull@localhost>2004-02-29 22:42:33 +0000
commitf063dad96ec737db0ce213c4df32ecc600637881 (patch)
treea8735ff7873de4f7fda886264158e89493875290 /src/cmd/plumb/match.c
parent91c13e54b5d631b65e2f8344d5e0abd058f78ba1 (diff)
downloadplan9port-f063dad96ec737db0ce213c4df32ecc600637881.tar.gz
plan9port-f063dad96ec737db0ce213c4df32ecc600637881.tar.bz2
plan9port-f063dad96ec737db0ce213c4df32ecc600637881.zip
Small tweaks to make things build again.
Diffstat (limited to 'src/cmd/plumb/match.c')
-rw-r--r--src/cmd/plumb/match.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd/plumb/match.c b/src/cmd/plumb/match.c
index dc1abbb1..5a4cd88c 100644
--- a/src/cmd/plumb/match.c
+++ b/src/cmd/plumb/match.c
@@ -431,7 +431,7 @@ execproc(void *v)
av = v;
stackargv(av, args, argc);
free(av);
- procexec(nil, fd, args[0], args);
+ threadexec(nil, fd, args[0], args);
threadexits("can't exec");
}
@@ -458,6 +458,6 @@ Found:
argv = buildargv(rs->act[i]->arg, e);
if(argv[0] == nil)
return "empty argument list";
- proccreate(execproc, argv, EXECSTACK);
+ threadcreate(execproc, argv, EXECSTACK);
return nil;
}