maddy/signal_nonposix.go
fox.cpp 97b370191d
Make maddy buildable with GOOS=windows
Some people want to do so (#83) and it is not a big trouble
for us to support it.
2019-10-26 19:58:47 +03:00

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
}