On 8/26/22 07:18, Helge Deller wrote:
+ if (arg < _NSIG) + signal_name = target_signal_to_host_signal_table[arg];
Oh, and _NSIG is a host thing. Leave the array as [] and then bound the lookup with ARRAY_SIZE(target_signal_name). Also, missing {}.
r~