tiki/service/cmdutil_windows.go
2026-04-07 23:51:50 -04:00

10 lines
296 B
Go

//go:build windows
package service
import "os/exec"
// setProcessGroup is a no-op on Windows.
// Windows has no process-group kill equivalent to Unix's kill(-pgid).
// cmd.WaitDelay (set by the caller) bounds the pipe drain if children outlive the parent.
func setProcessGroup(_ *exec.Cmd) {}