Files
lazyssh/internal/core/services/sysprocattr_windows.go
T

11 lines
267 B
Go
Raw Normal View History

2025-10-08 21:31:47 +01:00
//go:build windows
package services
import "syscall"
// setDetach is a no-op on Windows because syscall.SysProcAttr does not have Setsid.
func setDetach(attr *syscall.SysProcAttr) {
// No detachment tweak needed; Windows uses different process group semantics.
}