diff options
Diffstat (limited to 'src/pkg/syscall/exec_unix.go')
-rw-r--r-- | src/pkg/syscall/exec_unix.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/pkg/syscall/exec_unix.go b/src/pkg/syscall/exec_unix.go index 46f05efef..94f075622 100644 --- a/src/pkg/syscall/exec_unix.go +++ b/src/pkg/syscall/exec_unix.go @@ -87,7 +87,6 @@ func SetNonblock(fd int, nonblocking bool) (errno int) { return err } - // Fork, dup fd onto 0..len(fd), and exec(argv0, argvv, envv) in child. // If a dup or exec fails, write the errno int to pipe. // (Pipe is close-on-exec so if exec succeeds, it will be closed.) |