You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
326 B
Go
17 lines
326 B
Go
6 years ago
|
// +build !windows
|
||
|
|
||
|
package notary
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"syscall"
|
||
|
)
|
||
|
|
||
|
// NotarySupportedSignals contains the signals we would like to capture:
|
||
|
// - SIGUSR1, indicates a increment of the log level.
|
||
|
// - SIGUSR2, indicates a decrement of the log level.
|
||
|
var NotarySupportedSignals = []os.Signal{
|
||
|
syscall.SIGUSR1,
|
||
|
syscall.SIGUSR2,
|
||
|
}
|