Minor main.go signal fixes
* Buffer the signal channel as it's non-blocking on the sender side * Notify on SIGTERM instead of the uncatchable SIGKILL License: MIT Signed-off-by: Filippo Valsorda <valsorda@google.com>
This commit is contained in:
		
							parent
							
								
									7a527f7c89
								
							
						
					
					
						commit
						bc05eb1c3c
					
				
							
								
								
									
										5
									
								
								main.go
									
									
									
									
									
								
							
							
						
						
									
										5
									
								
								main.go
									
									
									
									
									
								
							@ -12,6 +12,7 @@ import (
 | 
			
		||||
	"os/signal"
 | 
			
		||||
	"runtime"
 | 
			
		||||
	"strconv"
 | 
			
		||||
	"syscall"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
const (
 | 
			
		||||
@ -236,7 +237,7 @@ func main() {
 | 
			
		||||
	logger.Info.Println("Device started")
 | 
			
		||||
 | 
			
		||||
	errs := make(chan error)
 | 
			
		||||
	term := make(chan os.Signal)
 | 
			
		||||
	term := make(chan os.Signal, 1)
 | 
			
		||||
 | 
			
		||||
	uapi, err := UAPIListen(interfaceName, fileUAPI)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
@ -259,7 +260,7 @@ func main() {
 | 
			
		||||
 | 
			
		||||
	// wait for program to terminate
 | 
			
		||||
 | 
			
		||||
	signal.Notify(term, os.Kill)
 | 
			
		||||
	signal.Notify(term, syscall.SIGTERM)
 | 
			
		||||
	signal.Notify(term, os.Interrupt)
 | 
			
		||||
 | 
			
		||||
	select {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user