summaryrefslogtreecommitdiff
path: root/pkg/machine/qemu/machine_windows.go
diff options
context:
space:
mode:
authorArthur Sengileyev <arthur.sengileyev@gmail.com>2022-08-16 13:39:02 +0300
committerArthur Sengileyev <arthur.sengileyev@gmail.com>2022-08-29 16:53:42 +0300
commitc1480b39a9e993aaa74caabf6d5c8bb865b78784 (patch)
treede4ca58d0bd8ff2d327a544a775f367ed2ad8597 /pkg/machine/qemu/machine_windows.go
parent00b03db6f208614d7967f5dbd5c0281cc0bd6d23 (diff)
downloadpodman-c1480b39a9e993aaa74caabf6d5c8bb865b78784.tar.gz
podman-c1480b39a9e993aaa74caabf6d5c8bb865b78784.tar.bz2
podman-c1480b39a9e993aaa74caabf6d5c8bb865b78784.zip
Improved Windows compatibility for machine command
Signed-off-by: Arthur Sengileyev <arthur.sengileyev@gmail.com>
Diffstat (limited to 'pkg/machine/qemu/machine_windows.go')
-rw-r--r--pkg/machine/qemu/machine_windows.go27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkg/machine/qemu/machine_windows.go b/pkg/machine/qemu/machine_windows.go
new file mode 100644
index 000000000..6c63faf50
--- /dev/null
+++ b/pkg/machine/qemu/machine_windows.go
@@ -0,0 +1,27 @@
+package qemu
+
+import (
+ "bytes"
+ "fmt"
+
+ "github.com/containers/podman/v4/pkg/machine"
+)
+
+func isProcessAlive(pid int) bool {
+ if checkProcessStatus("process", pid, nil) == nil {
+ return true
+ }
+ return false
+}
+
+func checkProcessStatus(processHint string, pid int, stderrBuf *bytes.Buffer) error {
+ active, exitCode := machine.GetProcessState(pid)
+ if !active {
+ if stderrBuf != nil {
+ return fmt.Errorf("%s exited unexpectedly, exit code: %d stderr: %s", processHint, exitCode, stderrBuf.String())
+ } else {
+ return fmt.Errorf("%s exited unexpectedly, exit code: %d", processHint, exitCode)
+ }
+ }
+ return nil
+}