Files
nomad/command/alloc_exec_unix.go
2023-08-10 17:27:29 -05:00

19 lines
381 B
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
// +build darwin dragonfly freebsd linux netbsd openbsd solaris
package command
import (
"os"
"os/signal"
"golang.org/x/sys/unix"
)
func setupWindowNotification(ch chan<- os.Signal) {
signal.Notify(ch, unix.SIGWINCH)
}