From 329daee5ef737fed010e1995555064b44bea1efe Mon Sep 17 00:00:00 2001 From: John Howard Date: Wed, 5 Apr 2017 11:04:34 -0700 Subject: [PATCH] Windows: Remove unused process_windows.go Signed-off-by: John Howard --- pkg/system/process_windows.go | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 pkg/system/process_windows.go 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() - // } -}