mirror of
https://gitee.com/samwaf/SamWaf.git
synced 2025-12-06 14:59:18 +08:00
13 lines
188 B
Go
13 lines
188 B
Go
//go:build !windows && !plan9
|
|
// +build !windows,!plan9
|
|
|
|
package xdaemon
|
|
|
|
import "syscall"
|
|
|
|
func NewSysProcAttr() *syscall.SysProcAttr {
|
|
return &syscall.SysProcAttr{
|
|
Setsid: true,
|
|
}
|
|
}
|