mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
8b7917cd81
See https://tip.golang.org/doc/go1.17#gofmt for more details
45 lines
1 KiB
Go
45 lines
1 KiB
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package procutil
|
|
|
|
import (
|
|
"os"
|
|
"os/signal"
|
|
"syscall"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
|
|
)
|
|
|
|
// WaitForSigterm waits for either SIGTERM or SIGINT
|
|
//
|
|
// Returns the caught signal.
|
|
//
|
|
// It also prevent from program termination on SIGHUP signal,
|
|
// since this signal is frequently used for config reloading.
|
|
func WaitForSigterm() os.Signal {
|
|
ch := make(chan os.Signal, 1)
|
|
signal.Notify(ch, os.Interrupt, syscall.SIGTERM, syscall.SIGHUP)
|
|
for {
|
|
sig := <-ch
|
|
if sig == syscall.SIGHUP {
|
|
// Prevent from the program stop on SIGHUP
|
|
continue
|
|
}
|
|
return sig
|
|
}
|
|
}
|
|
|
|
// SelfSIGHUP sends SIGHUP signal to the current process.
|
|
func SelfSIGHUP() {
|
|
if err := syscall.Kill(syscall.Getpid(), syscall.SIGHUP); err != nil {
|
|
logger.Panicf("FATAL: cannot send SIGHUP to itself: %s", err)
|
|
}
|
|
}
|
|
|
|
// NewSighupChan returns a channel, which is triggered on every SIGHUP.
|
|
func NewSighupChan() <-chan os.Signal {
|
|
ch := make(chan os.Signal, 1)
|
|
signal.Notify(ch, syscall.SIGHUP)
|
|
return ch
|
|
}
|