mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-22 01:17:16 +00:00
17 lines
216 B
Go
17 lines
216 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
|
||
|
|
}
|