On Tue, Dec 01, 2009 at 05:37:48PM +0100, Veaceslav Falico wrote:
>
> -     if (fork () == 0)
> +
> +     /*
> +     * We can't use fork() directly because on powerpc it loops inside libc 
> on 
> +     * ptrace over utrace. See http://lkml.org/lkml/2009/11/28/11
> +     */
> +     if (syscall(__NR_fork) == 0)
>         {
>           read (-1, NULL, 0);
>           _exit (22);
>

Sorry, the comment is just wrong. I'll resend the patch in several minutes.

--
Veaceslav

Reply via email to