grumble/signal_unix.go
2012-02-06 22:17:42 +01:00

31 lines
613 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 (
"exp/signal"
"fmt"
"github.com/mkrautz/grumble/pkg/logtarget"
"os"
"syscall"
)
func SignalHandler() {
for {
sig := <-signal.Incoming
if sig == os.UnixSignal(syscall.SIGUSR2) {
err := logtarget.Target.Rotate()
if err != nil {
fmt.Fprintf(os.Stderr, "Unable to rotate log file: %v", err)
}
continue
}
if sig == os.UnixSignal(syscall.SIGINT) || sig == os.UnixSignal(syscall.SIGTERM) {
os.Exit(0)
}
}
}