SIGRTMINSIGRTMAX
SIGRTMIN and SIGRTMAX are macros defined in the POSIX signal interface, typically declared in <signal.h>, that specify the inclusive range of real-time signals on a given system. Real-time signals are a distinct class from the standard signals (such as SIGINT or SIGTERM) and are intended for reliable, asynchronous inter-process communication and timer notifications.
The exact numeric values of SIGRTMIN and SIGRTMAX are implementation-defined and can vary between operating systems
Real-time signals have some advantages over standard signals. They are queued, meaning multiple signals in the
Usage typically involves selecting a specific signal within the range (for example, SIGRTMIN + n) to represent