aboutsummaryrefslogtreecommitdiff
path: root/src/os/exec/exec.go
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2017-06-09 16:45:55 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2017-06-09 18:09:27 +0000
commit467f87ce60028d87f1b552c30138ccba6412333a (patch)
tree61dbba9f3ff54576e5577fc8ad714ebb7194086c /src/os/exec/exec.go
parent27f88731eba585e1d9b5e425f61d270ff170ed68 (diff)
downloadgo-467f87ce60028d87f1b552c30138ccba6412333a.tar.gz
go-467f87ce60028d87f1b552c30138ccba6412333a.zip
os/exec: remove BUG for old and unsupported OS
Nobody uses 10.6 these days anyway. Fixes #20623 Change-Id: I698c83cbc288082558e34097ff54d1428aed75ec Reviewed-on: https://go-review.googlesource.com/45171 Reviewed-by: Matt Layher <mdlayher@gmail.com>
Diffstat (limited to 'src/os/exec/exec.go')
-rw-r--r--src/os/exec/exec.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/os/exec/exec.go b/src/os/exec/exec.go
index 0b16f22a99..7f0d68b071 100644
--- a/src/os/exec/exec.go
+++ b/src/os/exec/exec.go
@@ -91,9 +91,6 @@ type Cmd struct {
// ExtraFiles specifies additional open files to be inherited by the
// new process. It does not include standard input, standard output, or
// standard error. If non-nil, entry i becomes file descriptor 3+i.
- //
- // BUG(rsc): On OS X 10.6, child processes may sometimes inherit unwanted fds.
- // https://golang.org/issue/2603
ExtraFiles []*os.File
// SysProcAttr holds optional, operating system-specific attributes.