Re: [Qemu-devel] [PATCH] linux-user: Fix fork() and vfork()

2017-02-28 Thread Peter Maydell
On 28 February 2017 at 02:51, Tim Hentenaar wrote: > A check was introduced in 5ea2fc84da1bffce749c9d0848f5336def2818bb which > causes fork() and vfork() to fail if TARGET_SIGCHLD != SIGCHLD. > > Signed-off-by: Tim Hentenaar > --- > linux-user/syscall.c | 4 ++-- > 1 file changed, 2 insertions(+

[Qemu-devel] [PATCH] linux-user: Fix fork() and vfork()

2017-02-27 Thread Tim Hentenaar
A check was introduced in 5ea2fc84da1bffce749c9d0848f5336def2818bb which causes fork() and vfork() to fail if TARGET_SIGCHLD != SIGCHLD. Signed-off-by: Tim Hentenaar --- linux-user/syscall.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux-user/syscall.c b/linux-user