blob: c4d6a051b723ab357bb097cff9c35619f91d9ab5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//go:build close_range
package container
import "hakurei.app/ext"
// doCloseOnExec implements ensureCloseOnExec by calling CloseRange with
// CLOSE_RANGE_CLOEXEC.
func doCloseOnExec() error {
return ext.CloseRange(0, ext.MaxUint, ext.CLOSE_RANGE_CLOEXEC)
}
|