mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 13:37:41 +03:00
26 lines
473 B
Go
26 lines
473 B
Go
//+build windows
|
|
|
|
package maddy
|
|
|
|
import (
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
|
|
"github.com/foxcpp/maddy/log"
|
|
)
|
|
|
|
func waitForSignal() os.Signal {
|
|
sig := make(chan os.Signal, 5)
|
|
signal.Notify(sig, os.Interrupt, syscall.SIGTERM, syscall.SIGHUP, syscall.SIGINT)
|
|
|
|
s := <-sig
|
|
go func() {
|
|
s := waitForSignal()
|
|
log.Printf("forced shutdown due to signal (%v)!", s)
|
|
os.Exit(1)
|
|
}()
|
|
|
|
log.Printf("signal received (%v), next signal will force immediate shutdown.", s)
|
|
return s
|
|
}
|