SIGINT handling fix

This commit is contained in:
Friedl Ulrich 2015-02-07 10:08:20 +01:00
parent e74117af27
commit 838b6040ae

View file

@ -49,11 +49,15 @@ func main() {
quit := rfm.Loop()
sigint := make(chan os.Signal)
sigint := make(chan os.Signal, 1)
signal.Notify(sigint, os.Interrupt)
<-sigint
quit <- 1
<-quit
for {
select {
case <-sigint:
quit <- 1
<-quit
return
}
}
}