mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 10:03:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			246 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			246 B
		
	
	
	
		
			Go
		
	
	
	
	
	
//go:build !linux && !darwin && !freebsd && !windows
 | 
						|
// +build !linux,!darwin,!freebsd,!windows
 | 
						|
 | 
						|
package signal
 | 
						|
 | 
						|
import (
 | 
						|
	"syscall"
 | 
						|
)
 | 
						|
 | 
						|
// SignalMap is an empty map of signals for unsupported platform.
 | 
						|
var SignalMap = map[string]syscall.Signal{}
 |