Tizen_4.0 base
[platform/upstream/docker-engine.git] / vendor / github.com / docker / notary / const_nowindows.go
1 // +build !windows
2
3 package notary
4
5 import (
6         "os"
7         "syscall"
8 )
9
10 // NotarySupportedSignals contains the signals we would like to capture:
11 // - SIGUSR1, indicates a increment of the log level.
12 // - SIGUSR2, indicates a decrement of the log level.
13 var NotarySupportedSignals = []os.Signal{
14         syscall.SIGUSR1,
15         syscall.SIGUSR2,
16 }