mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-03-31 13:58:51 +02:00
21 lines
265 B
Go
21 lines
265 B
Go
//go:build windows
|
|
// +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
|
|
}
|