mirror of
https://github.com/kemko/nomad.git
synced 2026-01-09 11:55:42 +03:00
14 lines
188 B
Go
14 lines
188 B
Go
// +build windows
|
|
|
|
package testtask
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func executeProcessGroup(gid string) {
|
|
fmt.Fprintf(os.Stderr, "process groups are not supported on windows\n")
|
|
os.Exit(1)
|
|
}
|