Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Thu, 5 Sep 2002 18:26:29 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Thu, 5 Sep 2002 18:26:29 -0400 Received: from mx2.elte.hu ([157.181.151.9]:32921 "HELO mx2.elte.hu") by vger.kernel.org with SMTP id ; Thu, 5 Sep 2002 18:26:12 -0400 Date: Fri, 6 Sep 2002 00:35:22 +0200 (CEST) From: Ingo Molnar Reply-To: Ingo Molnar To: Daniel Jacobowitz Cc: OGAWA Hirofumi , Linus Torvalds , Subject: Re: [patch] ptrace-fix-2.5.33-A1 In-Reply-To: <20020905221558.GA12837@nevyn.them.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 904 Lines: 23 there are two kinds of wait4 calls, one that gets the WIFSTOPPED event from the debugged task, for this the traced task has to be in the debugger's ->children list. Another one is when a debugged task exits and its parent wants the exit event. But in this case the task is untraced already, so it gets back into the parent's ->children list. ie. wait4 should only look at the ->children list - zombies (or traced tasks debugged by this task) can only be there. The only addition is that in the wait4 non-blocking case we need to look at the traced list as well - since a non-blocking wait4 is a 'could there be any children exiting' kind of query. Ingo - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/