mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 10:03:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			326 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			326 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +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,
 | 
						|
}
 |