2022-01-02 21:26:05 +01:00
|
|
|
//go:build darwin || freebsd || linux || netbsd || openbsd || dragonfly || solaris
|
2017-12-05 10:10:57 +01:00
|
|
|
// +build darwin freebsd linux netbsd openbsd dragonfly solaris
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
2022-01-18 19:33:46 +01:00
|
|
|
// ReloadSignals are the signals that the current OS will send to the process
|
|
|
|
// when a configuration reload is requested.
|
2022-01-02 21:26:05 +01:00
|
|
|
var ReloadSignals = []os.Signal{
|
|
|
|
syscall.SIGUSR1,
|
2017-12-05 10:10:57 +01:00
|
|
|
}
|