The source code to handle different types of the signal is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
// Golang program to handle different types of signals
package main
import (
"fmt"
"os"
"os/signal"
"syscall"
)
func main() {
SigChan := make(chan os.Signal, 1)
signal.Notify(SigChan, syscall.SIGHUP, syscall.SIGINT, syscall.SIGTERM, syscall.SIGQUIT)
sig := <-SigChan
switch sig {
case syscall.SIGHUP:
fmt.Println("\nSIGHUP signal generated")
case syscall.SIGINT:
fmt.Println("\nSIGINT signal generated")
case syscall.SIGTERM:
fmt.Println("\nSIGTERM signal generated")
case syscall.SIGQUIT:
fmt.Println("\nSIGQUIT signal generated")
default:
fmt.Println("\nUNKNOWN signal generated")
}
}
Output:
$ go run signal.go
^C
SIGINT signal generated
Explanation:
In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the required packages to predefined functions.
In the main() function, we created a channel SigChan to receive the signal. And, we specified different types of signals in the signal.Notify() function to accept specify signal and print appropriate message using switch() block on the console screen.
Program/Source Code:
The source code to handle different types of the signal is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
Output:
Explanation:
In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the required packages to predefined functions.
In the main() function, we created a channel SigChan to receive the signal. And, we specified different types of signals in the signal.Notify() function to accept specify signal and print appropriate message using switch() block on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer