Re: [PATCH v2 6/7] linux-user/alpha: Share code for TARGET_NR_sigaction

2021-04-23 Thread Alex Bennée
Richard Henderson writes: > There's no longer a difference between the alpha code and > the generic code. > > There is a type difference in target_old_sigaction.sa_flags, > which can be resolved with a very much smaller ifdef, which > allows us to finish sharing the target_sigaction definition.

Re: [PATCH v2 6/7] linux-user/alpha: Share code for TARGET_NR_sigaction

2021-04-23 Thread Alex Bennée
Richard Henderson writes: > There's no longer a difference between the alpha code and > the generic code. > > There is a type difference in target_old_sigaction.sa_flags, > which can be resolved with a very much smaller ifdef, which > allows us to finish sharing the target_sigaction definition.

[PATCH v2 6/7] linux-user/alpha: Share code for TARGET_NR_sigaction

2021-04-22 Thread Richard Henderson
There's no longer a difference between the alpha code and the generic code. There is a type difference in target_old_sigaction.sa_flags, which can be resolved with a very much smaller ifdef, which allows us to finish sharing the target_sigaction definition. Signed-off-by: Richard Henderson ---