]> granicus.if.org Git - strace/commitdiff
Fix indefinite hang on no-mmu systems
authorMike Frysinger <vapier@gentoo.org>
Thu, 5 Apr 2012 05:52:25 +0000 (01:52 -0400)
committerDmitry V. Levin <ldv@altlinux.org>
Thu, 5 Apr 2012 14:53:49 +0000 (14:53 +0000)
The ptrace setoptions code will fork a child which goes to sleep and
expects the parent to continue on to do tests.  Unfortunately, this
does not work on no-mmu systems as fork() is actually vfork() and any
vforked children will hang the parent until it exits or execs.

We might be able to make this test work on no-mmu systems with a bit
of work, but easier to just disable this for the release so it works
now.

* strace.c (test_ptrace_setoptions_for_all): Return if strace_vforked.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
strace.c

index 3ad037d3b36143621241ee8d963d454fc1451e19..1097b0c1d148dc30ed4adb869a822e3cffff2725 100644 (file)
--- a/strace.c
+++ b/strace.c
@@ -1285,6 +1285,10 @@ test_ptrace_setoptions_for_all(void)
        int pid;
        int it_worked = 0;
 
+       /* this fork test doesn't work on no-mmu systems */
+       if (strace_vforked)
+               return;
+
        pid = fork();
        if (pid < 0)
                perror_msg_and_die("fork");