Re: [PATCH v2 06/30] linux-user: Provide new force_sigsegv_for_addr() function

2021-08-24 Thread Peter Maydell
On Sun, 22 Aug 2021 at 04:55, Richard Henderson wrote: > > Most linux-user targets so far do not distinguish between SEGV_MAPERR > and SEGV_ACCERR. This function will be used to fix that. > > Signed-off-by: Richard Henderson > --- > linux-user/signal-common.h | 1 + > linux-user/signal.c

[PATCH v2 06/30] linux-user: Provide new force_sigsegv_for_addr() function

2021-08-21 Thread Richard Henderson
Most linux-user targets so far do not distinguish between SEGV_MAPERR and SEGV_ACCERR. This function will be used to fix that. Signed-off-by: Richard Henderson --- linux-user/signal-common.h | 1 + linux-user/signal.c| 18 ++ 2 files changed, 19 insertions(+) diff --gi