Incomplete list of valid signal numbers.
Author: l14Created Dec 3, 2025Updated Dec 3, 2025
Labelssignals
Hi,
The list of valid signal number defined in supervisor/datatypes.py is incomplete.
# all valid signal numbers
SIGNUMS = [ getattr(signal, k) for k in dir(signal) if k.startswith('SIG') ]
the numbers between Signals.SIGRTMIN: 34 and Signals.SIGRTMAX: 64 are valid too.
Please add them, thanks
Source: Supervisor/supervisor