mirror of
https://github.com/boolean-maybe/tiki
synced 2026-04-21 13:37:20 +00:00
10 lines
296 B
Go
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) {}
|