mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-07-26 06:38:42 +00:00
14 lines
284 B
Go
14 lines
284 B
Go
package main
|
|
|
|
// This file contains utility functions for Windows.
|
|
|
|
import (
|
|
"os/exec"
|
|
)
|
|
|
|
// setCommandAsDaemon makes sure this command does not receive signals sent to
|
|
// the parent. It is unimplemented on Windows.
|
|
func setCommandAsDaemon(daemon *exec.Cmd) {
|
|
// Not implemented.
|
|
}
|