Re: [PATCH 1/2] linux-user: Let sigaction query SIGKILL/SIGSTOP

2021-06-20 Thread Laurent Vivier
Le 01/06/2021 à 16:55, Ilya Leoshkevich a écrit : > The kernel allows doing this, so let's allow this in qemu as well. > Valgrind relies on this. > > Signed-off-by: Ilya Leoshkevich > --- > linux-user/signal.c | 6 +- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/linux-u

Re: [PATCH 1/2] linux-user: Let sigaction query SIGKILL/SIGSTOP

2021-06-20 Thread Laurent Vivier
Le 01/06/2021 à 16:55, Ilya Leoshkevich a écrit : > The kernel allows doing this, so let's allow this in qemu as well. > Valgrind relies on this. > > Signed-off-by: Ilya Leoshkevich > --- > linux-user/signal.c | 6 +- > 1 file changed, 5 insertions(+), 1 deletion(-) > > diff --git a/linux-u

[PATCH 1/2] linux-user: Let sigaction query SIGKILL/SIGSTOP

2021-06-01 Thread Ilya Leoshkevich
The kernel allows doing this, so let's allow this in qemu as well. Valgrind relies on this. Signed-off-by: Ilya Leoshkevich --- linux-user/signal.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/linux-user/signal.c b/linux-user/signal.c index 9016896dcd..bc3431708f 1006