mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-17 02:48:28 -07:00
28 lines
431 B
Go
28 lines
431 B
Go
|
//go:build darwin || freebsd || linux || openbsd
|
||
|
// +build darwin freebsd linux openbsd
|
||
|
|
||
|
package aghos
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"os/signal"
|
||
|
|
||
|
"golang.org/x/sys/unix"
|
||
|
)
|
||
|
|
||
|
func notifyShutdownSignal(c chan<- os.Signal) {
|
||
|
signal.Notify(c, unix.SIGINT, unix.SIGQUIT, unix.SIGTERM)
|
||
|
}
|
||
|
|
||
|
func isShutdownSignal(sig os.Signal) (ok bool) {
|
||
|
switch sig {
|
||
|
case
|
||
|
unix.SIGINT,
|
||
|
unix.SIGQUIT,
|
||
|
unix.SIGTERM:
|
||
|
return true
|
||
|
default:
|
||
|
return false
|
||
|
}
|
||
|
}
|