2014-03-03 17:27:29 -07:00
|
|
|
// Copyright 2014 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.
|
|
|
|
|
2021-02-19 16:35:10 -07:00
|
|
|
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
|
2014-03-03 17:27:29 -07:00
|
|
|
|
|
|
|
package os
|
|
|
|
|
|
|
|
// supportsCloseOnExec reports whether the platform supports the
|
|
|
|
// O_CLOEXEC flag.
|
2018-02-26 06:06:01 -07:00
|
|
|
// On Darwin, the O_CLOEXEC flag was introduced in OS X 10.7 (Darwin 11.0.0).
|
2018-06-01 14:29:59 -06:00
|
|
|
// See https://support.apple.com/kb/HT1633.
|
2018-02-26 06:06:01 -07:00
|
|
|
// On FreeBSD, the O_CLOEXEC flag was introduced in version 8.3.
|
2014-03-03 17:27:29 -07:00
|
|
|
const supportsCloseOnExec = true
|