From: Nate Sammons Date: Mon, 29 Mar 1999 23:02:29 +0000 (+0000) Subject: Don't try to follow clone, until special handling for all of its X-Git-Tag: v4.5.18~1232 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=38508fdf0c25cd9227a5f6e4085f3c94bd70eb0c;p=strace Don't try to follow clone, until special handling for all of its possible modes has been implemented. --- diff --git a/process.c b/process.c index 5ecaa16c..bcea3d48 100644 --- a/process.c +++ b/process.c @@ -300,6 +300,12 @@ struct tcb *tcp; dont_follow = 1; #endif } +#endif +#ifdef SYS_clone + /* clone can do many things, not all of which we know how to handle. + Don't do it for now. */ + if (tcp->scno == SYS_clone) + dont_follow = 1; #endif if (entering(tcp)) { if (!followfork || dont_follow)