Q:

Golang program to demonstrate the SIGINT signal

belongs to collection: Golang Signals Programs

0

Here, we will demonstrate a SIGINT signal using the signal.Notify() function. And, we will use the syscall package to specify signal constants.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to demonstrate a SIGINT signal is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Golang program to demonstrate the SIGINT signal
package main

import (
	"fmt"
	"os"
	"os/signal"
	"syscall"
)

func main() {
	sigs := make(chan os.Signal, 1)
	signal.Notify(sigs, syscall.SIGINT, syscall.SIGTERM)

	fmt.Println("Waiting for signal")

	sig := <-sigs
	fmt.Println("Program ", sig)

	fmt.Println("Program finished")
}

Output:

Waiting for signal
^CProgram  interrupt
Program finished

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 to receive the signal. And, we specify syscall.SIGINT signal in the signal.Notify() function to accept specify signal.

Here, we press CTRL+C using the keyboard to generate SIGINT signal during program execution.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Golang program to handle different types of signal... >>