diff options
Diffstat (limited to 'pkg/container/util_windows.go')
-rw-r--r-- | pkg/container/util_windows.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/pkg/container/util_windows.go b/pkg/container/util_windows.go new file mode 100644 index 0000000..0a94c83 --- /dev/null +++ b/pkg/container/util_windows.go @@ -0,0 +1,15 @@ +package container + +import ( + "errors" + "os" + "syscall" +) + +func getSysProcAttr(cmdLine string, tty bool) *syscall.SysProcAttr { + return &syscall.SysProcAttr{CmdLine: cmdLine, CreationFlags: syscall.CREATE_NEW_PROCESS_GROUP} +} + +func openPty() (*os.File, *os.File, error) { + return nil, nil, errors.New("Unsupported") +} |