Welcome to mirror list, hosted at ThFree Co, Russian Federation.

panel_unix.go « service « web - github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 13d2237c28eeef326312451bf30214fead29172d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//go:build linux

package service

import (
	"os/exec"
	"syscall"
)

func setDetachedProcess(cmd *exec.Cmd) {
	cmd.SysProcAttr = &syscall.SysProcAttr{Setsid: true}
}