From owner-freebsd-current@FreeBSD.ORG Tue Jun 24 17:07:48 2003 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BB0137B401; Tue, 24 Jun 2003 17:07:48 -0700 (PDT) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5CDF43FAF; Tue, 24 Jun 2003 17:07:46 -0700 (PDT) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.12.9/8.12.9) with ESMTP id h5P07jt0061812; Wed, 25 Jun 2003 04:07:46 +0400 (MSD) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.12.9/8.12.9/Submit) id h5P07jrv061811; Wed, 25 Jun 2003 04:07:45 +0400 (MSD) Date: Wed, 25 Jun 2003 04:07:45 +0400 From: Andrey Chernov To: Juli Mallett Message-ID: <20030625000745.GA57678@nagual.pp.ru> References: <20030624183515.A42570@FreeBSD.org> <20030624234501.GA51779@nagual.pp.ru> <20030624185411.A43877@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030624185411.A43877@FreeBSD.org> User-Agent: Mutt/1.5.4i cc: current@FreeBSD.ORG Subject: Re: tcsh being dodgy, or pipe code ishoos? X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 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: Wed, 25 Jun 2003 00:07:48 -0000 On Tue, Jun 24, 2003 at 18:54:11 -0500, Juli Mallett wrote: > stdout. Where does stderr come into it? Yes I know about TTY races Forget about stderr, it looks like fork race somewhere. Minimal example will be ( ( echo 2 ; echo 3 ) | xargs -I% echo + % ) which outputs + + 3 2 in rare cases. Note that ( echo 2 ; echo 3 ) | xargs -I% echo + % never pruduce this bug, so no pipes involved, just ()