1
0
mirror of https://github.com/golang/go synced 2024-09-30 14:18:32 -06:00

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>
This commit is contained in:
Brad Fitzpatrick 2017-06-09 16:45:55 +00:00
parent 27f88731eb
commit 467f87ce60

View File

@ -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.