all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#723: 23.0.60; query-on-exit-flag sometimes unexpectedly nil
@ 2008-08-15  1:41 ` Markus Triska
       [not found]   ` <handler.723.B.12187645286391.ack@emacsbugs.donarmstrong.com>
  2008-08-15 20:20   ` bug#723: marked as done " Emacs bug Tracking System
  0 siblings, 2 replies; 3+ messages in thread
From: Markus Triska @ 2008-08-15  1:41 UTC (permalink / raw)
  To: emacs-pretest-bug


open.el consists of the form:

   (let ((h "www.fsf.org"))
     (setq p1 (make-network-process :name "p1" :host h :service 80))
     (setq p2 (make-network-process :name "p2" :host h :service 80))
     (setq p3 (make-network-process :name "p3" :host h :service 80))
     (setq t1 (make-network-process :name "t1" :host h :service 80))
     (delete-process t1)
     (setq p4 (make-network-process :name "p4" :host h :service 80))
     (setq p5 (make-network-process :name "p5" :host h :service 80))
     (setq t2 (make-network-process :name "t2" :host h :service 80))
     (delete-process t2)
     (setq p6 (make-network-process :name "p6" :host h :service 80))
     (setq p7 (make-network-process :name "p7" :host h :service 80))
     (setq p8 (make-network-process :name "p8" :host h :service 80))
     (setq p9 (make-network-process :name "p9" :host h :service 80))
     (setq p10 (make-network-process :name "p10" :host h :service 80))
     (list-processes t))

When I do "emacs -Q open.el -f eval-buffer", I expect the "*Process
List*" buffer to show the ten processes p1 to p10. Invariably, several
(varying) processes are missing from the list, and their query-on-exit
flag is nil. M-x list-processes shows all processes as expected.

In GNU Emacs 23.0.60.1 (i386-apple-darwin8.11.1, GTK+ Version 2.12.9)
 of 2008-08-08 on pnsgw1-client079.demo.tuwien.ac.at
Windowing system distributor `The XFree86 Project, Inc', version 11.0.40400000
Important settings:
  value of $LC_ALL: nil
  value of $LC_COLLATE: nil
  value of $LC_CTYPE: nil
  value of $LC_MESSAGES: nil
  value of $LC_MONETARY: nil
  value of $LC_NUMERIC: nil
  value of $LC_TIME: nil
  value of $LANG: en.UTF-8
  value of $XMODIFIERS: nil
  locale-coding-system: nil
  default-enable-multibyte-characters: t







^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#723: Acknowledgement (23.0.60; query-on-exit-flag sometimes  unexpectedly nil)
       [not found]   ` <handler.723.B.12187645286391.ack@emacsbugs.donarmstrong.com>
@ 2008-08-15  2:54     ` Markus Triska
  0 siblings, 0 replies; 3+ messages in thread
From: Markus Triska @ 2008-08-15  2:54 UTC (permalink / raw)
  To: 723


Here is a more robust test case:

   (let ((h "www.fsf.org")
         (n 0))
     (while t
       (setq n (1+ n))
       (message "iteration: %s" n)
       (setq p (make-network-process :name "p" :host h :service 80))
       (unless (process-query-on-exit-flag p)
         (error "(process-query-on-exit-flag p) is now nil"))
       (delete-process p)))

In all cases I encountered, p was a perfectly valid process after this
program quit with an error, i.e., I could send and receive messages.






^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#723: marked as done (23.0.60; query-on-exit-flag sometimes  unexpectedly nil)
  2008-08-15  1:41 ` bug#723: 23.0.60; query-on-exit-flag sometimes unexpectedly nil Markus Triska
       [not found]   ` <handler.723.B.12187645286391.ack@emacsbugs.donarmstrong.com>
@ 2008-08-15 20:20   ` Emacs bug Tracking System
  1 sibling, 0 replies; 3+ messages in thread
From: Emacs bug Tracking System @ 2008-08-15 20:20 UTC (permalink / raw)
  To: Chong Yidong

[-- Attachment #1: Type: text/plain, Size: 867 bytes --]


Your message dated Fri, 15 Aug 2008 16:12:54 -0400
with message-id <87hc9mca0p.fsf@cyd.mit.edu>
and subject line Re: 23.0.60; query-on-exit-flag sometimes unexpectedly nil
has caused the Emacs bug report #723,
regarding 23.0.60; query-on-exit-flag sometimes unexpectedly nil
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact don@donarmstrong.com
immediately.)


-- 
723: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=723
Emacs Bug Tracking System
Contact don@donarmstrong.com with problems

[-- Attachment #2: Type: message/rfc822, Size: 3775 bytes --]

From: Markus Triska <markus.triska@gmx.at>
To: emacs-pretest-bug@gnu.org
Subject: 23.0.60; query-on-exit-flag sometimes unexpectedly nil
Date: Fri, 15 Aug 2008 03:41:54 +0200 (CEST)
Message-ID: <20080815014154.D29A9A276D4@mt-computer.local>


open.el consists of the form:

   (let ((h "www.fsf.org"))
     (setq p1 (make-network-process :name "p1" :host h :service 80))
     (setq p2 (make-network-process :name "p2" :host h :service 80))
     (setq p3 (make-network-process :name "p3" :host h :service 80))
     (setq t1 (make-network-process :name "t1" :host h :service 80))
     (delete-process t1)
     (setq p4 (make-network-process :name "p4" :host h :service 80))
     (setq p5 (make-network-process :name "p5" :host h :service 80))
     (setq t2 (make-network-process :name "t2" :host h :service 80))
     (delete-process t2)
     (setq p6 (make-network-process :name "p6" :host h :service 80))
     (setq p7 (make-network-process :name "p7" :host h :service 80))
     (setq p8 (make-network-process :name "p8" :host h :service 80))
     (setq p9 (make-network-process :name "p9" :host h :service 80))
     (setq p10 (make-network-process :name "p10" :host h :service 80))
     (list-processes t))

When I do "emacs -Q open.el -f eval-buffer", I expect the "*Process
List*" buffer to show the ten processes p1 to p10. Invariably, several
(varying) processes are missing from the list, and their query-on-exit
flag is nil. M-x list-processes shows all processes as expected.

In GNU Emacs 23.0.60.1 (i386-apple-darwin8.11.1, GTK+ Version 2.12.9)
 of 2008-08-08 on pnsgw1-client079.demo.tuwien.ac.at
Windowing system distributor `The XFree86 Project, Inc', version 11.0.40400000
Important settings:
  value of $LC_ALL: nil
  value of $LC_COLLATE: nil
  value of $LC_CTYPE: nil
  value of $LC_MESSAGES: nil
  value of $LC_MONETARY: nil
  value of $LC_NUMERIC: nil
  value of $LC_TIME: nil
  value of $LANG: en.UTF-8
  value of $XMODIFIERS: nil
  locale-coding-system: nil
  default-enable-multibyte-characters: t




[-- Attachment #3: Type: message/rfc822, Size: 1277 bytes --]

From: Chong Yidong <cyd@stupidchicken.com>
To: Markus Triska <markus.triska@gmx.at>
Cc: 723-done@emacsbugs.donarmstrong.com
Subject: Re: 23.0.60; query-on-exit-flag sometimes unexpectedly nil
Date: Fri, 15 Aug 2008 16:12:54 -0400
Message-ID: <87hc9mca0p.fsf@cyd.mit.edu>

> When I do "emacs -Q open.el -f eval-buffer", I expect the "*Process
> List*" buffer to show the ten processes p1 to p10. Invariably, several
> (varying) processes are missing from the list, and their query-on-exit
> flag is nil. M-x list-processes shows all processes as expected.

I've checked in a fix.  Thanks.


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-08-15 20:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <87hc9mca0p.fsf@cyd.mit.edu>
2008-08-15  1:41 ` bug#723: 23.0.60; query-on-exit-flag sometimes unexpectedly nil Markus Triska
     [not found]   ` <handler.723.B.12187645286391.ack@emacsbugs.donarmstrong.com>
2008-08-15  2:54     ` bug#723: Acknowledgement (23.0.60; query-on-exit-flag sometimes unexpectedly nil) Markus Triska
2008-08-15 20:20   ` bug#723: marked as done " Emacs bug Tracking System

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.