From owner-freebsd-current@FreeBSD.ORG Thu Jul 12 14:32:04 2007 Return-Path: X-Original-To: current@freebsd.org Delivered-To: freebsd-current@FreeBSD.ORG Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 30BCF16A400; Thu, 12 Jul 2007 14:32:04 +0000 (UTC) (envelope-from christos@zoulas.com) Received: from rebar.astron.com (rebar.astron.com [38.117.134.202]) by mx1.freebsd.org (Postfix) with ESMTP id 0E73F13C46E; Thu, 12 Jul 2007 14:32:03 +0000 (UTC) (envelope-from christos@zoulas.com) Received: by rebar.astron.com (Postfix, from userid 10080) id 7D67756539; Thu, 12 Jul 2007 10:11:10 -0400 (EDT) From: christos@zoulas.com (Christos Zoulas) Date: Thu, 12 Jul 2007 10:11:10 -0400 In-Reply-To: <4695A66A.8030903@FreeBSD.org> from Mark Peek (Jul 11, 8:56pm) Organization: Astron Software X-Mailer: Mail User's Shell (7.2.6 beta(4.pl1)+dynamic 20000103) To: Mark Peek , Doug White Message-Id: <20070712141110.7D67756539@rebar.astron.com> X-Mailman-Approved-At: Thu, 12 Jul 2007 15:07:04 +0000 Cc: tcsh-bugs@mx.gw.com, current@freebsd.org Subject: Re: tcsh backtick hang info X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jul 2007 14:32:04 -0000 On Jul 11, 8:56pm, mp@FreeBSD.org (Mark Peek) wrote: -- Subject: Re: tcsh backtick hang info | There appears to be two different issues. One is with the builtin kill and the | other is the gdb issue. I sent off a tentative patch to the reporter of the | builtin kill issue and am awaiting onfirmation. The patch is here: | | http://people.freebsd.org/~mp/tcsh_kill.patch | | The gdb issue, much to my dismay, is still alluding my debugging skill given | the interaction with gdb and issues with actually debugging what is happening. | | Mark Thanks for all the work and time spent tracking this! The fix is definitely correct. You must be able to receive sigchld from the glob command otherwise the shell will not be able to reap the `` job. So blocking after globbing is the way to go. Good luck with gdb :-) Best, christos