From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Agustin Martin Newsgroups: gmane.emacs.devel Subject: Re: delete-process bug Date: Thu, 1 Jun 2006 18:41:06 +0200 Message-ID: <20060601164106.GA12151@agmartin.aq.upm.es> References: <87k684y4uz.fsf@lrde.org> <87u0774rak.fsf@lrde.org> <8764jna6ll.fsf@lrde.org> <8764jlyn2c.fsf@lrde.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1149180294 29412 80.91.229.2 (1 Jun 2006 16:44:54 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 1 Jun 2006 16:44:54 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Jun 01 18:44:52 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FlqHh-0003WJ-6A for ged-emacs-devel@m.gmane.org; Thu, 01 Jun 2006 18:44:37 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FlqHg-0004k0-Gf for ged-emacs-devel@m.gmane.org; Thu, 01 Jun 2006 12:44:32 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FlqHT-0004jn-RW for emacs-devel@gnu.org; Thu, 01 Jun 2006 12:44:19 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FlqHR-0004jV-83 for emacs-devel@gnu.org; Thu, 01 Jun 2006 12:44:18 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FlqHR-0004jS-3F for emacs-devel@gnu.org; Thu, 01 Jun 2006 12:44:17 -0400 Original-Received: from [138.100.4.49] (helo=edison.ccupm.upm.es) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1FlqNi-0007an-6o for emacs-devel@gnu.org; Thu, 01 Jun 2006 12:50:46 -0400 Original-Received: from mala.aq.upm.es (Agmartin.aq.upm.es [138.100.41.131]) by edison.ccupm.upm.es (8.13.6/8.13.6) with ESMTP id k51Gf6Gu002426; Thu, 1 Jun 2006 18:41:06 +0200 Original-Received: by mala.aq.upm.es (Postfix, from userid 1000) id 723FA40F56; Thu, 1 Jun 2006 18:41:06 +0200 (CEST) Original-To: emacs-devel@gnu.org Mail-Followup-To: emacs-devel@gnu.org Content-Disposition: inline In-Reply-To: <8764jlyn2c.fsf@lrde.org> User-Agent: Mutt/1.5.11+cvs20060403 X-MIME-Autoconverted: from 8bit to quoted-printable by edison.ccupm.upm.es id k51Gf6Gu002426 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:55560 Archived-At: On Thu, Jun 01, 2006 at 04:20:43PM +0200, Micha=EBl Cadilhac wrote: > storm@cua.dk (Kim F. Storm) writes: >=20 > > michael.cadilhac@lrde.org (Micha=EBl Cadilhac) writes: > > > >> The whole patch follows: > > > > Thanks. Installed. >=20 > Thanks! >=20 > Now that this bug is fixed, Agustin, can you check (a third time) if > the first patch is OK? (Copy of the message follows) Tested with 20060524 snapshot with your ispell.el patch and today's last installed process.c (with the last patch) > 1) (original test) Quick switching between two flyspellized buffers > that have different dictionaries, Works very well > 2)=20 > > (let (processes) > (dotimes (i 100) > (push (start-process "bug" nil "/tmp/sleep") processes)) > (dotimes (i 50) > (if (zerop (mod i 2)) > (delete-process (pop processes)) > (kill-process (pop processes)))) > (message "%S" (call-process "/tmp/sleep")) > (dotimes (i 50) > (delete-process (pop processes))) > (message "%S" (call-process "/tmp/sleep"))) I am getting=20 if: Process bug<98> is not active here, --=20 Agustin