SIGQUIT
SIGQUIT is a signal defined by POSIX for Unix-like systems that requests a process to terminate and produce a core dump. It is typically generated by the quit character on a terminal, usually the key combination Ctrl-\, which sends the signal to the foreground process group. The exact delivery and behavior can vary slightly across different systems.
The default action of SIGQUIT is to terminate the process and generate a core dump. A process
Whether a core dump is actually created depends on system configuration and resource limits. Core dumps are
SIGQUIT is distinct from other terminal-generated signals, notably SIGINT (interrupt from Ctrl-C). The availability and handling