Re: [PATCH v2] linux-user: Disable static assert involving __SIGRTMAX if it is missing

2021-05-26 Thread Laurent Vivier
Le 26/05/2021 à 21:02, Michael Forney a écrit : > This check is to ensure that the loop in signal_table_init() from > SIGRTMIN to SIGRTMAX falls within the bounds of host_to_target_signal_table > (_NSIG). However, it is not critical, since _NSIG is already defined > to be the one larger than the la

[PATCH v2] linux-user: Disable static assert involving __SIGRTMAX if it is missing

2021-05-26 Thread Michael Forney
This check is to ensure that the loop in signal_table_init() from SIGRTMIN to SIGRTMAX falls within the bounds of host_to_target_signal_table (_NSIG). However, it is not critical, since _NSIG is already defined to be the one larger than the largest signal supported by the system (as specified in th