summaryrefslogtreecommitdiffstats
path: root/pkg/container/util_openbsd_mips64.go
blob: b991d694f1c0edd422293a364391616a5bef8c73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package container

import (
	"errors"
	"os"
	"syscall"
)

func getSysProcAttr(cmdLine string, tty bool) *syscall.SysProcAttr {
	return &syscall.SysProcAttr{
		Setpgid: true,
	}
}

func openPty() (*os.File, *os.File, error) {
	return nil, nil, errors.New("Unsupported")
}