mirror of
				https://github.com/moby/moby.git
				synced 2022-11-09 12:21:53 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			293 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			293 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +build !windows
 | 
						|
 | 
						|
package daemon
 | 
						|
 | 
						|
import (
 | 
						|
	"os"
 | 
						|
	"os/signal"
 | 
						|
	"syscall"
 | 
						|
 | 
						|
	psignal "github.com/docker/docker/pkg/signal"
 | 
						|
)
 | 
						|
 | 
						|
func setupDumpStackTrap(_ string) {
 | 
						|
	c := make(chan os.Signal, 1)
 | 
						|
	signal.Notify(c, syscall.SIGUSR1)
 | 
						|
	go func() {
 | 
						|
		for range c {
 | 
						|
			psignal.DumpStacks("")
 | 
						|
		}
 | 
						|
	}()
 | 
						|
}
 |