2017-09-14 19:11:35 +02:00
|
|
|
// Copyright 2017 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2019-02-01 22:57:36 +01:00
|
|
|
// +build freebsd hurd netbsd openbsd
|
2018-09-24 23:46:21 +02:00
|
|
|
|
2017-09-14 19:11:35 +02:00
|
|
|
package syscall
|
|
|
|
|
|
|
|
func forkExecPipe(p []int) error {
|
2018-01-09 02:23:08 +01:00
|
|
|
return Pipe2(p, O_CLOEXEC)
|
2017-09-14 19:11:35 +02:00
|
|
|
}
|