1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // +build aix darwin dragonfly netbsd openbsd solaris
9 func forkExecPipe(p
[]int) error
{
14 _
, err
= fcntl(p
[0], F_SETFD
, FD_CLOEXEC
)
18 _
, err
= fcntl(p
[1], F_SETFD
, FD_CLOEXEC
)