diff options
Diffstat (limited to 'pkg/container/util_openbsd_mips64.go')
-rw-r--r-- | pkg/container/util_openbsd_mips64.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pkg/container/util_openbsd_mips64.go b/pkg/container/util_openbsd_mips64.go new file mode 100644 index 0000000..b991d69 --- /dev/null +++ b/pkg/container/util_openbsd_mips64.go @@ -0,0 +1,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") +} |