1
0
Fork 0
forked from External/grumble
grumble/signal_unix.go
2011-08-27 15:15:23 +02:00

20 lines
333 B
Go

// Copyright (c) 2011 The Grumble Authors
// The use of this source code is goverened by a BSD-style
// license that can be found in the LICENSE-file.
package main
import (
"os"
"os/signal"
)
func SignalHandler() {
for {
sig := <-signal.Incoming
if sig != os.SIGINT && sig != os.SIGTERM {
continue
}
os.Exit(0)
}
}