
- Operating System Tutorial
- OS - Home
- OS - Overview
- OS - Components
- OS - Types
- OS - Services
- OS - Properties
- OS - Processes
- OS - Process Scheduling
- OS - Scheduling algorithms
- OS - Multi-threading
- OS - Memory Management
- OS - Virtual Memory
- OS - I/O Hardware
- OS - I/O Software
- OS - File System
- OS - Security
- OS - Linux
- OS - Exams Questions with Answers
- OS - Exams Questions with Answers
- Operating System Useful Resources
- OS - Quick Guide
- OS - Useful Resources
- OS - Discussion
What is default signal handler?
Signals are software interrupts which sent to a program to indicate that an important event has occurred. A Signal may be handled by following one of two possible handlers:
- A default signal handler
- A user-defined signal handler
A Default signal handler is associated with every signal that the kernel runs when handling that signal. The action that a script or program performs when it receives a signal is called the default actions. A default signal handler handles these types of different default actions.
Some of the possible default actions are −
Terminate the process.
Ignore the signal.
Dump core. It creates a file called core containing the memory image of the process when it received the signal.
Stop the process.
Continue a stopped process.
- Related Articles
- What is user-defined signal handler?
- What Is a Completion Handler in Swift?
- What is Signal to Noise Ratio?
- What is a Unit Parabolic Signal?
- What is a Unit Step Signal?
- What is a Unit Ramp Signal?
- What is meant by Default Risk and Default Premium?
- What is a Sinusoidal Wave Signal – Definition and Importance
- What is the Default Gateway?
- What is a credit default swap?
- Handler in android ?
- What is a default constructor in JavaScript?
- What is the default constructor in C#?
- What is default constructor in C# programs?
- What is Default access level in Java?

Advertisements