summaryrefslogtreecommitdiff
path: root/pkg/system/unsupported.go
blob: eb3ec7ee9260864d775485d4c8a925a83722b4ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// +build !linux

package system

import (
	"os/exec"
)

func SetCloneFlags(cmd *exec.Cmd, flag uintptr) {

}

func UsetCloseOnExec(fd uintptr) error {
	return ErrNotSupportedPlatform
}