1
0
mirror of https://github.com/golang/go synced 2024-10-03 00:21:22 -06:00

cov: fix for Plan 9 build

R=golang-dev
CC=golang-dev, rsc
https://golang.org/cl/5374086
This commit is contained in:
Lucio De Re 2011-11-16 16:23:50 -05:00 committed by Russ Cox
parent c9355596cd
commit 293059ad85

View File

@ -7,10 +7,8 @@
*/
#include <u.h>
#include <time.h>
#include <libc.h>
#include <bio.h>
#include <ctype.h>
#include "tree.h"
#include <ureg_amd64.h>
@ -394,7 +392,7 @@ startprocess(char **argv)
pid = getpid();
if(ctlproc(pid, "hang") < 0)
sysfatal("ctlproc hang: %r");
execv(argv[0], argv);
exec(argv[0], argv);
sysfatal("exec %s: %r", argv[0]);
}
if(ctlproc(pid, "attached") < 0 || ctlproc(pid, "waitstop") < 0)
@ -454,7 +452,6 @@ main(int argc, char **argv)
if(argc == 0) {
*--argv = "6.out";
argc++;
}
fd = open(argv[0], OREAD);
if(fd < 0)