mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-16 18:53:29 +00:00
all: add support for Windows
This commit is contained in:
committed by
Ron Evans
parent
8906192690
commit
7369a0e7f2
@@ -0,0 +1,20 @@
|
||||
// +build !windows
|
||||
|
||||
package main
|
||||
|
||||
// This file contains utility functions for Unix-like systems (e.g. Linux).
|
||||
|
||||
import (
|
||||
"os/exec"
|
||||
"syscall"
|
||||
)
|
||||
|
||||
// setCommandAsDaemon makes sure this command does not receive signals sent to
|
||||
// the parent.
|
||||
func setCommandAsDaemon(daemon *exec.Cmd) {
|
||||
// https://stackoverflow.com/a/35435038/559350
|
||||
daemon.SysProcAttr = &syscall.SysProcAttr{
|
||||
Setpgid: true,
|
||||
Pgid: 0,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user