SIGRTMAX
SIGRTMAX is a macro used in POSIX-compliant systems to denote the maximum number of real-time signals available to user-space processes. It is defined alongside SIGRTMIN, which marks the lower bound of the real-time signal range. Real-time signals are a dedicated class of signals designed for asynchronous notifications that can carry data and be queued.
The exact numeric values of SIGRTMIN and SIGRTMAX are implementation-defined and can vary between architectures and
Delivery semantics for real-time signals differ from standard signals. Real-time signals are queued, allowing multiple instances
Sending and handling real-time signals usually involve functions such as kill, tkill, or pthread_kill to target