Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Thu, 15 Aug 2002 11:13:25 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Thu, 15 Aug 2002 11:13:25 -0400 Received: from mx1.elte.hu ([157.181.1.137]:33995 "HELO mx1.elte.hu") by vger.kernel.org with SMTP id ; Thu, 15 Aug 2002 11:13:24 -0400 Date: Thu, 15 Aug 2002 17:16:38 +0200 (CEST) From: Ingo Molnar Reply-To: Ingo Molnar To: Linus Torvalds Cc: linux-kernel@vger.kernel.org Subject: Re: [patch] clone-detached-2.5.31-B0 In-Reply-To: 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: 643 Lines: 23 one of the debugging tests triggered a false-positive BUG() when a detached thread was straced. Fix against BK-curr attached. Ingo --- kernel/signal.c.orig Thu Aug 15 17:12:02 2002 +++ kernel/signal.c Thu Aug 15 17:12:34 2002 @@ -774,7 +774,7 @@ int why, status; /* is the thread detached? */ - if (sig == -1 || tsk->exit_signal == -1) + if (sig == -1) BUG(); info.si_signo = sig; - 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/