mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
91a86670aa
SIGCHLD and SIGWINCH used in api/client (cli code) are not available on Windows. Extracting into separate files with build tags. Signed-off-by: Ahmet Alp Balkan <ahmetb@microsoft.com>
12 lines
237 B
Go
12 lines
237 B
Go
// +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)
|