mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-26 04:28:46 +01:00
Signed-off-by: Matthieu MOREL <matthieu.morel35@gmail.com> Co-authored-by: Blake Pettersson <blake.pettersson@gmail.com>
20 lines
247 B
Go
20 lines
247 B
Go
//go:build windows
|
|
|
|
package plugin
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func newSysProcAttr(setpgid bool) *syscall.SysProcAttr {
|
|
return &syscall.SysProcAttr{}
|
|
}
|
|
|
|
func sysCallKill(pid int) error {
|
|
return nil
|
|
}
|
|
|
|
func sysCallTerm(pid int) error {
|
|
return nil
|
|
}
|