mirror of
https://github.com/openfaas/faasd.git
synced 2025-06-21 00:06:37 +00:00
Upgrade containerd to 1.6.2 and CNI to 0.9.1
Upgrades containerd, and switches to the official 64-bit ARM binary. Continues to use my binary for 32-bit arm hosts. CNI upgraded to v0.9.1 Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
This commit is contained in:
committed by
Alex Ellis
parent
449bcf2691
commit
912ac265f4
34
vendor/github.com/moby/sys/signal/signal_windows.go
generated
vendored
Normal file
34
vendor/github.com/moby/sys/signal/signal_windows.go
generated
vendored
Normal file
@ -0,0 +1,34 @@
|
||||
package signal
|
||||
|
||||
import (
|
||||
"syscall"
|
||||
|
||||
"golang.org/x/sys/windows"
|
||||
)
|
||||
|
||||
// Signals used in cli/command (no windows equivalent, use
|
||||
// invalid signals so they don't get handled)
|
||||
const (
|
||||
SIGCHLD = syscall.Signal(0xff)
|
||||
SIGWINCH = syscall.Signal(0xff)
|
||||
SIGPIPE = syscall.Signal(0xff)
|
||||
)
|
||||
|
||||
// SignalMap is a map of "supported" signals. As per the comment in GOLang's
|
||||
// ztypes_windows.go: "More invented values for signals". Windows doesn't
|
||||
// really support signals in any way, shape or form that Unix does.
|
||||
var SignalMap = map[string]syscall.Signal{
|
||||
"ABRT": syscall.Signal(windows.SIGABRT),
|
||||
"ALRM": syscall.Signal(windows.SIGALRM),
|
||||
"BUS": syscall.Signal(windows.SIGBUS),
|
||||
"FPE": syscall.Signal(windows.SIGFPE),
|
||||
"HUP": syscall.Signal(windows.SIGHUP),
|
||||
"ILL": syscall.Signal(windows.SIGILL),
|
||||
"INT": syscall.Signal(windows.SIGINT),
|
||||
"KILL": syscall.Signal(windows.SIGKILL),
|
||||
"PIPE": syscall.Signal(windows.SIGPIPE),
|
||||
"QUIT": syscall.Signal(windows.SIGQUIT),
|
||||
"SEGV": syscall.Signal(windows.SIGSEGV),
|
||||
"TERM": syscall.Signal(windows.SIGTERM),
|
||||
"TRAP": syscall.Signal(windows.SIGTRAP),
|
||||
}
|
Reference in New Issue
Block a user