Commit 293059ad authored by Lucio De Re's avatar Lucio De Re Committed by Russ Cox

cov: fix for Plan 9 build

R=golang-dev
CC=golang-dev, rsc
https://golang.org/cl/5374086
parent c9355596
...@@ -7,10 +7,8 @@ ...@@ -7,10 +7,8 @@
*/ */
#include <u.h> #include <u.h>
#include <time.h>
#include <libc.h> #include <libc.h>
#include <bio.h> #include <bio.h>
#include <ctype.h>
#include "tree.h" #include "tree.h"
#include <ureg_amd64.h> #include <ureg_amd64.h>
...@@ -394,7 +392,7 @@ startprocess(char **argv) ...@@ -394,7 +392,7 @@ startprocess(char **argv)
pid = getpid(); pid = getpid();
if(ctlproc(pid, "hang") < 0) if(ctlproc(pid, "hang") < 0)
sysfatal("ctlproc hang: %r"); sysfatal("ctlproc hang: %r");
execv(argv[0], argv); exec(argv[0], argv);
sysfatal("exec %s: %r", argv[0]); sysfatal("exec %s: %r", argv[0]);
} }
if(ctlproc(pid, "attached") < 0 || ctlproc(pid, "waitstop") < 0) if(ctlproc(pid, "attached") < 0 || ctlproc(pid, "waitstop") < 0)
...@@ -454,7 +452,6 @@ main(int argc, char **argv) ...@@ -454,7 +452,6 @@ main(int argc, char **argv)
if(argc == 0) { if(argc == 0) {
*--argv = "6.out"; *--argv = "6.out";
argc++;
} }
fd = open(argv[0], OREAD); fd = open(argv[0], OREAD);
if(fd < 0) if(fd < 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment