Re: [Qemu-devel] [PATCH] linux-user: avoid treading on gprof's SIGPROF signals

2019-05-09 Thread Laurent Vivier
On 02/05/2019 16:58, Alex Bennée wrote: The guest tends to get confused when it receives signals it doesn't know about. Given the gprof magic has also set up it's own handler we would do well to avoid stomping on it as well. Signed-off-by: Alex Bennée --- linux-user/signal.c | 5 + 1

Re: [Qemu-devel] [PATCH] linux-user: avoid treading on gprof's SIGPROF signals

2019-05-02 Thread Laurent Vivier
On 02/05/2019 18:27, Laurent Desnogues wrote: > On Thu, May 2, 2019 at 6:17 PM Laurent Vivier wrote: >> >> On 02/05/2019 16:58, Alex Bennée wrote: >>> The guest tends to get confused when it receives signals it doesn't >>> know about. Given the gprof magic has also set up it's own handler we >>>

Re: [Qemu-devel] [PATCH] linux-user: avoid treading on gprof's SIGPROF signals

2019-05-02 Thread Laurent Desnogues
On Thu, May 2, 2019 at 6:17 PM Laurent Vivier wrote: > > On 02/05/2019 16:58, Alex Bennée wrote: > > The guest tends to get confused when it receives signals it doesn't > > know about. Given the gprof magic has also set up it's own handler we > > would do well to avoid stomping on it as well. > >

Re: [Qemu-devel] [PATCH] linux-user: avoid treading on gprof's SIGPROF signals

2019-05-02 Thread Laurent Vivier
On 02/05/2019 16:58, Alex Bennée wrote: > The guest tends to get confused when it receives signals it doesn't > know about. Given the gprof magic has also set up it's own handler we > would do well to avoid stomping on it as well. > > Signed-off-by: Alex Bennée > --- > linux-user/signal.c | 5

[Qemu-devel] [PATCH] linux-user: avoid treading on gprof's SIGPROF signals

2019-05-02 Thread Alex Bennée
The guest tends to get confused when it receives signals it doesn't know about. Given the gprof magic has also set up it's own handler we would do well to avoid stomping on it as well. Signed-off-by: Alex Bennée --- linux-user/signal.c | 5 + 1 file changed, 5 insertions(+) diff --git