aboutsummaryrefslogtreecommitdiffhomepage
path: root/util_windows.go
blob: 848c7b1f57dd9fd9f020d2059fdec8f694c2479d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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.
}