diff --git a/pkg/system/process_windows.go b/pkg/system/process_windows.go deleted file mode 100644 index e8113f97e3..0000000000 --- a/pkg/system/process_windows.go +++ /dev/null @@ -1,20 +0,0 @@ -package system - -// IsProcessAlive returns true if process with a given pid is running. -func IsProcessAlive(pid int) bool { - // TODO Windows containerd. Not sure this is needed - // p, err := os.FindProcess(pid) - // if err == nil { - // return true - // } - return false -} - -// KillProcess force-stops a process. -func KillProcess(pid int) { - // TODO Windows containerd. Not sure this is needed - // p, err := os.FindProcess(pid) - // if err == nil { - // p.Kill() - // } -}