From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Re: error in server-running-p on M$ Date: Sat, 22 Nov 2008 15:36:39 +0100 Message-ID: References: <18728.4982.765983.511070@a1ihome1.kph.uni-mainz.de> <18728.5963.672940.47287@a1ihome1.kph.uni-mainz.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1227364811 25193 80.91.229.12 (22 Nov 2008 14:40:11 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 22 Nov 2008 14:40:11 +0000 (UTC) Cc: Eli Zaretskii , emacs-devel@gnu.org To: "Ulrich Mueller" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Nov 22 15:41:13 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1L3tfd-0001CN-8V for ged-emacs-devel@m.gmane.org; Sat, 22 Nov 2008 15:41:13 +0100 Original-Received: from localhost ([127.0.0.1]:60123 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L3teU-00030F-65 for ged-emacs-devel@m.gmane.org; Sat, 22 Nov 2008 09:40:02 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1L3tbH-000093-6R for emacs-devel@gnu.org; Sat, 22 Nov 2008 09:36:43 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1L3tbF-00008g-0S for emacs-devel@gnu.org; Sat, 22 Nov 2008 09:36:41 -0500 Original-Received: from [199.232.76.173] (port=36442 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1L3tbE-00008V-AU for emacs-devel@gnu.org; Sat, 22 Nov 2008 09:36:40 -0500 Original-Received: from yw-out-1718.google.com ([74.125.46.156]:8906) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1L3tbE-000669-4U for emacs-devel@gnu.org; Sat, 22 Nov 2008 09:36:40 -0500 Original-Received: by yw-out-1718.google.com with SMTP id 9so649992ywk.66 for ; Sat, 22 Nov 2008 06:36:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=ElXvmFb0PyWJYptlg9xg/BU+wmNLyxZ1vgGu2IxR69Q=; b=rFYJQcEBdomCbSNWLUCqJWYZSryzTShKZ4W9ypq0f4L/eP1FDHfWRu3Kf1bKN/B6NT ZuwQhimxRAGmLrY1RuKsti/7IXFX0NPx3xQ186g6aRq9c1UDO2ZDjzBWpUYvLwe5E9kj LFbdZ8AO5sMzCLCZXZbs7DoSMH5dtgu+i3OfY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=a8pEd0Qe+52Lg/+Co20NnxLDkEsFZwP4b9/fOB34M1gUUg9wToTOQx5qT5YBDS2afe s68W2V4duyQzMBKFctgEzMfahwLd8D2xP72hJOdjlHAqHzliHyrABbTCvia8ZJOYj2xA YRXRGThhSX5ajEo8Ai2HCPNOHf1nRMQxxBUFE= Original-Received: by 10.100.95.19 with SMTP id s19mr736628anb.43.1227364599415; Sat, 22 Nov 2008 06:36:39 -0800 (PST) Original-Received: by 10.100.13.13 with HTTP; Sat, 22 Nov 2008 06:36:39 -0800 (PST) In-Reply-To: <18728.5963.672940.47287@a1ihome1.kph.uni-mainz.de> Content-Disposition: inline X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:105956 Archived-At: On Sat, Nov 22, 2008 at 15:29, Ulrich Mueller wrote: > This doesn't catch all cases. Of course it doesn't. > I think that the false positives are not the problem, but the false > negatives (i.e. port is in use, but server-running-p returns nil) are. Ports are assigned at random. The new instance is not going to reuse the port in the authentication file; we're starting the server with :server t. Juanma