From owner-freebsd-current@FreeBSD.ORG Thu Nov 18 16:52:47 2004 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 3929816A4CE for ; Thu, 18 Nov 2004 16:52:47 +0000 (GMT) Received: from kane.otenet.gr (kane.otenet.gr [195.170.0.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 661AE43D39 for ; Thu, 18 Nov 2004 16:52:46 +0000 (GMT) (envelope-from keramida@freebsd.org) Received: from orion.daedalusnetworks.priv (aris.bedc.ondsl.gr [62.103.39.226])iAIGqiRT013923; Thu, 18 Nov 2004 18:52:45 +0200 Received: from orion.daedalusnetworks.priv (orion [127.0.0.1]) iAIGqiSj046422; Thu, 18 Nov 2004 18:52:44 +0200 (EET) (envelope-from keramida@freebsd.org) Received: (from keramida@localhost)iAIGqic1046421; Thu, 18 Nov 2004 18:52:44 +0200 (EET) (envelope-from keramida@freebsd.org) Date: Thu, 18 Nov 2004 18:52:44 +0200 From: Giorgos Keramidas To: Poul-Henning Kamp Message-ID: <20041118165244.GA46388@orion.daedalusnetworks.priv> References: <20041118164356.GA46185@orion.daedalusnetworks.priv> <51652.1100796421@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <51652.1100796421@critter.freebsd.dk> cc: freebsd-current@freebsd.org Subject: Re: bug of misc/screen and fifos or ours? 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: Thu, 18 Nov 2004 16:52:47 -0000 On 2004-11-18 17:47, Poul-Henning Kamp wrote: > In message <20041118164356.GA46185@orion.daedalusnetworks.priv>, > Giorgos Keramidas writes: > > > BLOCK fcntl > > > >This is apparently the result of the following code from screen/socket.c: > > > > 793 #ifdef NAMEDPIPE > > 794 debug("Ha, there was someone knocking on my fifo??\n"); > > 795 if (fcntl(ServerSocket, F_SETFL, 0) == -1) > > 796 Panic(errno, "BLOCK fcntl"); > > 797 #else > > > >At line 795, screen attempts to set blocking mode on a FIFO and fails. > > Can you get me the exact errno value ? Sure. It's ENOTTY.