github.com/mutagen-io/mutagen@v0.18.0-rc1/cmd/mutagen/daemon/start_windows.go (about)

     1  package daemon
     2  
     3  import (
     4  	"syscall"
     5  
     6  	"golang.org/x/sys/windows"
     7  )
     8  
     9  // daemonProcessAttributes are the process attributes to use for the daemon.
    10  var daemonProcessAttributes = &syscall.SysProcAttr{
    11  	CreationFlags: windows.DETACHED_PROCESS | windows.CREATE_NEW_PROCESS_GROUP,
    12  }