blob: 9f00b999946c79f48c8847b1d2bfd0c8a58fb97f [file] [log] [blame]
// +build windows
package signal
import (
"syscall"
)
// Signals used in api/client (no windows equivalent, use
// invalid signals so they don't get handled)
const SIGCHLD = syscall.Signal(0xff)
const SIGWINCH = syscall.Signal(0xff)