//go:build !linux package procctl import "time" func isAlive(pid int) (bool, error) { return false, ErrNotSupported } func startProcess(execPath, workDir, configPath string) (int, error) { return 0, ErrNotSupported } func stopProcess(pid int, timeout time.Duration) error { return ErrNotSupported }