This probably affects all tools that use signals in some way. First, signal.rs does not consider SIGRTMIN or SIGRTMAX on Linux at all.
But, even where these are defined, the code does not handle SIGRTMIN+n notation. E.g.:
root@r:~# env --block-signal=RTMIN+7
env: 'RTMIN+7': invalid signal
root@r:~# env --version
uu_env (uutils coreutils) 0.6.0
This probably affects all tools that use signals in some way. First,
signal.rsdoes not considerSIGRTMINorSIGRTMAXon Linux at all.But, even where these are defined, the code does not handle
SIGRTMIN+nnotation. E.g.: