From 38508fdf0c25cd9227a5f6e4085f3c94bd70eb0c Mon Sep 17 00:00:00 2001 From: Nate Sammons Date: Mon, 29 Mar 1999 23:02:29 +0000 Subject: [PATCH] Don't try to follow clone, until special handling for all of its possible modes has been implemented. --- process.c | 6 ++++++ 1 file changed, 6 insertions(+) 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) -- 2.50.1