From unknown Tue Jun 17 20:11:50 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#5802 <5802@debbugs.gnu.org> To: bug#5802 <5802@debbugs.gnu.org> Subject: Status: emacsclient -c crashes emacs --daemon intermittently; have strace Reply-To: bug#5802 <5802@debbugs.gnu.org> Date: Wed, 18 Jun 2025 03:11:50 +0000 retitle 5802 emacsclient -c crashes emacs --daemon intermittently; have str= ace reassign 5802 emacs submitter 5802 Ryan Thompson severity 5802 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 29 18:35:48 2010 Received: (at submit) by debbugs.gnu.org; 29 Mar 2010 22:35:48 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NwNYf-0005iv-Tu for submit@debbugs.gnu.org; Mon, 29 Mar 2010 18:35:47 -0400 Received: from mail.gnu.org ([199.232.76.166] helo=mx10.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NwN97-00055a-SS for submit@debbugs.gnu.org; Mon, 29 Mar 2010 18:09:22 -0400 Received: from lists.gnu.org ([199.232.76.165]:49615) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NwN93-0002Du-J6 for submit@debbugs.gnu.org; Mon, 29 Mar 2010 18:09:17 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NwN92-0006hR-VI for bug-gnu-emacs@gnu.org; Mon, 29 Mar 2010 18:09:17 -0400 Received: from [140.186.70.92] (port=59907 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NwN8j-0006Oc-GS for bug-gnu-emacs@gnu.org; Mon, 29 Mar 2010 18:09:16 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.0 (2010-01-18) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE autolearn=unavailable version=3.3.0 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NwN8V-0007wC-Qd for bug-gnu-emacs@gnu.org; Mon, 29 Mar 2010 18:08:57 -0400 Received: from mail-yx0-f190.google.com ([209.85.210.190]:50233) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NwN8V-0007vq-KB for bug-gnu-emacs@gnu.org; Mon, 29 Mar 2010 18:08:43 -0400 Received: by yxe28 with SMTP id 28so1096089yxe.27 for ; Mon, 29 Mar 2010 15:08:42 -0700 (PDT) MIME-Version: 1.0 Received: by 10.231.14.193 with HTTP; Mon, 29 Mar 2010 15:08:21 -0700 (PDT) In-Reply-To: <2a4ba2fd1003251154w52283ce8w9a728b4d1e1c4170@mail.gmail.com> References: <2a4ba2fd1003251154w52283ce8w9a728b4d1e1c4170@mail.gmail.com> From: Ryan Thompson Date: Mon, 29 Mar 2010 15:08:21 -0700 Received: by 10.90.57.20 with SMTP id f20mr1754777aga.89.1269900521319; Mon, 29 Mar 2010 15:08:41 -0700 (PDT) Message-ID: <2a4ba2fd1003291508t5fccd372h2c13bbd3f19f83f7@mail.gmail.com> Subject: emacsclient -c crashes emacs --daemon intermittently; have strace To: bug-gnu-emacs@gnu.org Content-Type: text/plain; charset=ISO-8859-1 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Spam-Score: -4.0 (----) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Mon, 29 Mar 2010 18:35:44 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.3 (-----) I am trying to set myself up using emacs --daemon so that I can easily manage multiple emacs frames within one process. However, I have hit a significant stumbling block. If I run emacs --daemon (or emacs -nw and then do (server-start) ) and then repeatedly run emacsclient -c and clost the resulting window, emacs will randomly crash. Sometimes it happens on the first time that I run emacsclient -c, sometimes on the 20th. I use Ubuntu 9.10, and I have reported this bug in Launchpad. However, I have also compiled both emacs 23.1 and trunk from vanilla sources, and both of these exhibit the same bug as the Ubuntu-packaged versions. I have generated some stack traces by the following procedure, as described at https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/543611 Open two terminals. In the first terminal, run the following commands to start emacs with strace: $ mkdir -p /tmp/emacs-strace $ strace -o /tmp/emacs-strace/trace-`date +%s`.log emacs -Q -nw When emacs has started, do M-x server-start so that emacsclient can work. Now, in the second terminal, run the following command: $ x=0; while emacsclient -c ; do x=$(( $x + 1 )); done; echo "Created $x windows before crash." Now, an emacs window will open. Close it. Each time you close a window, a new emacs window will open. Keep closing each one that appears. If emacs exhibits the bug, then eventually you will close one window, and emacs will crash when it tries to create the next one. At this point, you can go get your stack trace in /tmp/emacs-strace. I have generated several traces in this way, and in each one, the last 50 lines are identical except that certain hexadecimal numbers have changed. I tried sending this message with one of the traces attached, but I guess it was too large. Please reply to tell me how I can send a trace. From debbugs-submit-bounces@debbugs.gnu.org Mon Mar 29 19:39:38 2010 Received: (at 5802) by debbugs.gnu.org; 29 Mar 2010 23:39:38 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NwOYU-0001qa-DU for submit@debbugs.gnu.org; Mon, 29 Mar 2010 19:39:38 -0400 Received: from mail-iw0-f175.google.com ([209.85.223.175]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NwOYR-0001qV-5O for 5802@debbugs.gnu.org; Mon, 29 Mar 2010 19:39:35 -0400 Received: by iwn5 with SMTP id 5so3713698iwn.9 for <5802@debbugs.gnu.org>; Mon, 29 Mar 2010 16:39:30 -0700 (PDT) MIME-Version: 1.0 Received: by 10.231.14.193 with HTTP; Mon, 29 Mar 2010 16:39:10 -0700 (PDT) In-Reply-To: References: <2a4ba2fd1003291508t5fccd372h2c13bbd3f19f83f7@mail.gmail.com> From: Ryan Thompson Date: Mon, 29 Mar 2010 16:39:10 -0700 Received: by 10.231.156.205 with SMTP id y13mr2890693ibw.27.1269905970323; Mon, 29 Mar 2010 16:39:30 -0700 (PDT) Message-ID: <2a4ba2fd1003291639u5391dfa7ub6edaa966aa11bc1@mail.gmail.com> Subject: Re: bug#5802: Acknowledgement (emacsclient -c crashes emacs --daemon intermittently; have strace) To: 5802@debbugs.gnu.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -3.9 (---) X-Debbugs-Envelope-To: 5802 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -3.5 (---) Actually, you can download a stack trace from the launchpad bug report that I linked. If you require more stack traces, I can easily generate them. On Mon, Mar 29, 2010 at 3:36 PM, GNU bug Tracking System wrote: > Thank you for filing a new bug report with GNU. > > This is an automatically generated reply to let you know your message > has been received. > > Your message is being forwarded to the package maintainers and other > interested parties for their attention; they will reply in due course. > > Your message has been sent to the package maintainer(s): > =A0bug-gnu-emacs@gnu.org > > If you wish to submit further information on this problem, please > send it to 5802@debbugs.gnu.org. > > Please do not send mail to help-debbugs@gnu.org unless you wish > to report a problem with the Bug-tracking system. > > -- > 5802: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D5802 > GNU Bug Tracking System > Contact help-debbugs@gnu.org with problems > From debbugs-submit-bounces@debbugs.gnu.org Tue Mar 30 11:46:45 2010 Received: (at 5802) by debbugs.gnu.org; 30 Mar 2010 15:46:45 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NwdeP-00022j-EW for submit@debbugs.gnu.org; Tue, 30 Mar 2010 11:46:45 -0400 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NwdeN-00022e-N9 for 5802@debbugs.gnu.org; Tue, 30 Mar 2010 11:46:44 -0400 Received: from dann by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1NwdeI-0001pi-Qc; Tue, 30 Mar 2010 11:46:38 -0400 To: Ryan Thompson Subject: Re: bug#5802: emacsclient -c crashes emacs --daemon intermittently; have strace References: <2a4ba2fd1003251154w52283ce8w9a728b4d1e1c4170@mail.gmail.com> <2a4ba2fd1003291508t5fccd372h2c13bbd3f19f83f7@mail.gmail.com> From: Dan Nicolaescu Date: Tue, 30 Mar 2010 11:46:38 -0400 In-Reply-To: <2a4ba2fd1003291508t5fccd372h2c13bbd3f19f83f7@mail.gmail.com> (Ryan Thompson's message of "Mon\, 29 Mar 2010 15\:08\:21 -0700") Message-ID: User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -6.6 (------) X-Debbugs-Envelope-To: 5802 Cc: 5802@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.6 (------) Ryan Thompson writes: > I am trying to set myself up using emacs --daemon so that I can easily > manage multiple emacs frames within one process. However, I have hit a > significant stumbling block. If I run emacs --daemon (or emacs -nw and > then do (server-start) ) and then repeatedly run emacsclient -c and > clost the resulting window, emacs will randomly crash. Sometimes it > happens on the first time that I run emacsclient -c, sometimes on the > 20th. > > I use Ubuntu 9.10, and I have reported this bug in Launchpad. However, > I have also compiled both emacs 23.1 and trunk from vanilla sources, > and both of these exhibit the same bug as the Ubuntu-packaged > versions. > > I have generated some stack traces by the following procedure, as > described at https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/543611 > > Open two terminals. In the first terminal, run the following commands > to start emacs with strace: > > $ mkdir -p /tmp/emacs-strace > $ strace -o /tmp/emacs-strace/trace-`date +%s`.log emacs -Q -nw > > When emacs has started, do M-x server-start so that emacsclient can > work. Now, in the second terminal, run the following command: > > $ x=0; while emacsclient -c ; do x=$(( $x + 1 )); done; echo "Created > $x windows before crash." > > Now, an emacs window will open. Close it. Each time you close a > window, a new emacs window will open. Keep closing each one that > appears. If emacs exhibits the bug, then eventually you will close one > window, and emacs will crash when it tries to create the next one. At > this point, you can go get your stack trace in /tmp/emacs-strace. This is very likely due to a long standing bug in Gtk+, see: http://bugzilla.gnome.org/show_bug.cgi?id=85715 Please compile emacs using ./configure --with-x-toolkit=lucid and try to reproduce the problem you are seeing with that emacs. From debbugs-submit-bounces@debbugs.gnu.org Tue Mar 30 13:06:51 2010 Received: (at 5802) by debbugs.gnu.org; 30 Mar 2010 17:06:51 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Nwetv-0002gv-LZ for submit@debbugs.gnu.org; Tue, 30 Mar 2010 13:06:51 -0400 Received: from mail-pv0-f172.google.com ([74.125.83.172]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Nwets-0002gp-Ug for 5802@debbugs.gnu.org; Tue, 30 Mar 2010 13:06:49 -0400 Received: by pvh1 with SMTP id 1so6275757pvh.3 for <5802@debbugs.gnu.org>; Tue, 30 Mar 2010 10:06:43 -0700 (PDT) MIME-Version: 1.0 Received: by 10.231.14.193 with HTTP; Tue, 30 Mar 2010 10:06:23 -0700 (PDT) In-Reply-To: References: <2a4ba2fd1003251154w52283ce8w9a728b4d1e1c4170@mail.gmail.com> <2a4ba2fd1003291508t5fccd372h2c13bbd3f19f83f7@mail.gmail.com> From: Ryan Thompson Date: Tue, 30 Mar 2010 10:06:23 -0700 Received: by 10.115.117.40 with SMTP id u40mr872883wam.202.1269968803463; Tue, 30 Mar 2010 10:06:43 -0700 (PDT) Message-ID: <2a4ba2fd1003301006w23d9110ch87068e1a6862a687@mail.gmail.com> Subject: Re: bug#5802: emacsclient -c crashes emacs --daemon intermittently; have strace To: Dan Nicolaescu Content-Type: text/plain; charset=ISO-8859-1 X-Spam-Score: -2.6 (--) X-Debbugs-Envelope-To: 5802 Cc: 5802@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) On Tue, Mar 30, 2010 at 8:46 AM, Dan Nicolaescu wrote: > Ryan Thompson writes: > >> I am trying to set myself up using emacs --daemon so that I can easily >> manage multiple emacs frames within one process. However, I have hit a >> significant stumbling block. If I run emacs --daemon (or emacs -nw and >> then do (server-start) ) and then repeatedly run emacsclient -c and >> clost the resulting window, emacs will randomly crash. Sometimes it >> happens on the first time that I run emacsclient -c, sometimes on the >> 20th. >> >> I use Ubuntu 9.10, and I have reported this bug in Launchpad. However, >> I have also compiled both emacs 23.1 and trunk from vanilla sources, >> and both of these exhibit the same bug as the Ubuntu-packaged >> versions. >> >> I have generated some stack traces by the following procedure, as >> described at https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/543611 >> >> Open two terminals. In the first terminal, run the following commands >> to start emacs with strace: >> >> $ mkdir -p /tmp/emacs-strace >> $ strace -o /tmp/emacs-strace/trace-`date +%s`.log emacs -Q -nw >> >> When emacs has started, do M-x server-start so that emacsclient can >> work. Now, in the second terminal, run the following command: >> >> $ x=0; while emacsclient -c ; do x=$(( $x + 1 )); done; echo "Created >> $x windows before crash." >> >> Now, an emacs window will open. Close it. Each time you close a >> window, a new emacs window will open. Keep closing each one that >> appears. If emacs exhibits the bug, then eventually you will close one >> window, and emacs will crash when it tries to create the next one. At >> this point, you can go get your stack trace in /tmp/emacs-strace. > > This is very likely due to a long standing bug in Gtk+, see: > http://bugzilla.gnome.org/show_bug.cgi?id=85715 > > Please compile emacs using > > ./configure --with-x-toolkit=lucid > > and try to reproduce the problem you are seeing with that emacs. > I tried that; same problem. Would you like a stack trace? From debbugs-submit-bounces@debbugs.gnu.org Tue Mar 30 13:47:20 2010 Received: (at 5802) by debbugs.gnu.org; 30 Mar 2010 17:47:20 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NwfX6-0003e2-1E for submit@debbugs.gnu.org; Tue, 30 Mar 2010 13:47:20 -0400 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NwfX4-0003dx-WC for 5802@debbugs.gnu.org; Tue, 30 Mar 2010 13:47:19 -0400 Received: from dann by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1NwfX0-0007W0-Cr; Tue, 30 Mar 2010 13:47:14 -0400 To: Ryan Thompson Subject: Re: bug#5802: emacsclient -c crashes emacs --daemon intermittently; have strace References: <2a4ba2fd1003251154w52283ce8w9a728b4d1e1c4170@mail.gmail.com> <2a4ba2fd1003291508t5fccd372h2c13bbd3f19f83f7@mail.gmail.com> <2a4ba2fd1003301006w23d9110ch87068e1a6862a687@mail.gmail.com> From: Dan Nicolaescu Date: Tue, 30 Mar 2010 13:47:14 -0400 In-Reply-To: <2a4ba2fd1003301006w23d9110ch87068e1a6862a687@mail.gmail.com> (Ryan Thompson's message of "Tue\, 30 Mar 2010 10\:06\:23 -0700") Message-ID: User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -6.6 (------) X-Debbugs-Envelope-To: 5802 Cc: 5802@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.6 (------) Ryan Thompson writes: > On Tue, Mar 30, 2010 at 8:46 AM, Dan Nicolaescu wrote: >> Ryan Thompson writes: >> >>> I am trying to set myself up using emacs --daemon so that I can easily >>> manage multiple emacs frames within one process. However, I have hit a >>> significant stumbling block. If I run emacs --daemon (or emacs -nw and >>> then do (server-start) ) and then repeatedly run emacsclient -c and >>> clost the resulting window, emacs will randomly crash. Sometimes it >>> happens on the first time that I run emacsclient -c, sometimes on the >>> 20th. >>> >>> I use Ubuntu 9.10, and I have reported this bug in Launchpad. However, >>> I have also compiled both emacs 23.1 and trunk from vanilla sources, >>> and both of these exhibit the same bug as the Ubuntu-packaged >>> versions. >>> >>> I have generated some stack traces by the following procedure, as >>> described at https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/543611 >>> >>> Open two terminals. In the first terminal, run the following commands >>> to start emacs with strace: >>> >>> $ mkdir -p /tmp/emacs-strace >>> $ strace -o /tmp/emacs-strace/trace-`date +%s`.log emacs -Q -nw >>> >>> When emacs has started, do M-x server-start so that emacsclient can >>> work. Now, in the second terminal, run the following command: >>> >>> $ x=0; while emacsclient -c ; do x=$(( $x + 1 )); done; echo "Created >>> $x windows before crash." >>> >>> Now, an emacs window will open. Close it. Each time you close a >>> window, a new emacs window will open. Keep closing each one that >>> appears. If emacs exhibits the bug, then eventually you will close one >>> window, and emacs will crash when it tries to create the next one. At >>> this point, you can go get your stack trace in /tmp/emacs-strace. >> >> This is very likely due to a long standing bug in Gtk+, see: >> http://bugzilla.gnome.org/show_bug.cgi?id=85715 >> >> Please compile emacs using >> >> ./configure --with-x-toolkit=lucid >> >> and try to reproduce the problem you are seeing with that emacs. >> > > I tried that; same problem. Would you like a stack trace? Sure, for the lucid version please. But please get the stack trace using by attaching gdb to emacs. See etc/DEBUG for more info. Also, please start emacs using "emacs -Q" From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 01 02:02:38 2010 Received: (at 5802) by debbugs.gnu.org; 1 Apr 2010 06:02:38 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NxDUE-00008E-AE for submit@debbugs.gnu.org; Thu, 01 Apr 2010 02:02:38 -0400 Received: from mail-yx0-f185.google.com ([209.85.210.185]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NxDUD-000087-3o for 5802@debbugs.gnu.org; Thu, 01 Apr 2010 02:02:37 -0400 Received: by yxe15 with SMTP id 15so299390yxe.7 for <5802@debbugs.gnu.org>; Wed, 31 Mar 2010 23:02:33 -0700 (PDT) MIME-Version: 1.0 Received: by 10.231.14.193 with HTTP; Wed, 31 Mar 2010 23:02:13 -0700 (PDT) In-Reply-To: References: <2a4ba2fd1003251154w52283ce8w9a728b4d1e1c4170@mail.gmail.com> <2a4ba2fd1003291508t5fccd372h2c13bbd3f19f83f7@mail.gmail.com> <2a4ba2fd1003301006w23d9110ch87068e1a6862a687@mail.gmail.com> From: Ryan Thompson Date: Wed, 31 Mar 2010 23:02:13 -0700 Received: by 10.151.4.1 with SMTP id g1mr915637ybi.175.1270101753175; Wed, 31 Mar 2010 23:02:33 -0700 (PDT) Message-ID: Subject: Re: bug#5802: emacsclient -c crashes emacs --daemon intermittently; have strace To: Dan Nicolaescu Content-Type: text/plain; charset=ISO-8859-1 X-Spam-Score: -2.0 (--) X-Debbugs-Envelope-To: 5802 Cc: 5802@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.9 (--) On Tue, Mar 30, 2010 at 10:47 AM, Dan Nicolaescu wrote: > Ryan Thompson writes: > >> On Tue, Mar 30, 2010 at 8:46 AM, Dan Nicolaescu wrote: >>> Ryan Thompson writes: >>> >>>> I am trying to set myself up using emacs --daemon so that I can easily >>>> manage multiple emacs frames within one process. However, I have hit a >>>> significant stumbling block. If I run emacs --daemon (or emacs -nw and >>>> then do (server-start) ) and then repeatedly run emacsclient -c and >>>> clost the resulting window, emacs will randomly crash. Sometimes it >>>> happens on the first time that I run emacsclient -c, sometimes on the >>>> 20th. >>>> >>>> I use Ubuntu 9.10, and I have reported this bug in Launchpad. However, >>>> I have also compiled both emacs 23.1 and trunk from vanilla sources, >>>> and both of these exhibit the same bug as the Ubuntu-packaged >>>> versions. >>>> >>>> I have generated some stack traces by the following procedure, as >>>> described at https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/543611 >>>> >>>> Open two terminals. In the first terminal, run the following commands >>>> to start emacs with strace: >>>> >>>> $ mkdir -p /tmp/emacs-strace >>>> $ strace -o /tmp/emacs-strace/trace-`date +%s`.log emacs -Q -nw >>>> >>>> When emacs has started, do M-x server-start so that emacsclient can >>>> work. Now, in the second terminal, run the following command: >>>> >>>> $ x=0; while emacsclient -c ; do x=$(( $x + 1 )); done; echo "Created >>>> $x windows before crash." >>>> >>>> Now, an emacs window will open. Close it. Each time you close a >>>> window, a new emacs window will open. Keep closing each one that >>>> appears. If emacs exhibits the bug, then eventually you will close one >>>> window, and emacs will crash when it tries to create the next one. At >>>> this point, you can go get your stack trace in /tmp/emacs-strace. >>> >>> This is very likely due to a long standing bug in Gtk+, see: >>> http://bugzilla.gnome.org/show_bug.cgi?id=85715 >>> >>> Please compile emacs using >>> >>> ./configure --with-x-toolkit=lucid >>> >>> and try to reproduce the problem you are seeing with that emacs. >>> >> >> I tried that; same problem. Would you like a stack trace? > > Sure, for the lucid version please. > But please get the stack trace using by attaching gdb to emacs. > See etc/DEBUG for more info. > > Also, please start emacs using "emacs -Q" > > > I tried to figure out gdb, but I couldn't figure it out in the time I had. But I have been running all my tests with -Q. I'll try again when I have more time to mess around with it. From debbugs-submit-bounces@debbugs.gnu.org Thu Apr 01 15:50:12 2010 Received: (at 5802) by debbugs.gnu.org; 1 Apr 2010 19:50:12 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NxQP6-0006oK-E4 for submit@debbugs.gnu.org; Thu, 01 Apr 2010 15:50:12 -0400 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NxQP3-0006oD-BW for 5802@debbugs.gnu.org; Thu, 01 Apr 2010 15:50:10 -0400 Received: from dann by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1NxQOz-0002Rh-9K; Thu, 01 Apr 2010 15:50:05 -0400 To: Ryan Thompson Subject: Re: bug#5802: emacsclient -c crashes emacs --daemon intermittently; have strace References: <2a4ba2fd1003251154w52283ce8w9a728b4d1e1c4170@mail.gmail.com> <2a4ba2fd1003291508t5fccd372h2c13bbd3f19f83f7@mail.gmail.com> <2a4ba2fd1003301006w23d9110ch87068e1a6862a687@mail.gmail.com> From: Dan Nicolaescu Date: Thu, 01 Apr 2010 15:50:05 -0400 In-Reply-To: (Ryan Thompson's message of "Wed\, 31 Mar 2010 23\:02\:13 -0700") Message-ID: User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Spam-Score: -6.6 (------) X-Debbugs-Envelope-To: 5802 Cc: 5802@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.6 (------) Ryan Thompson writes: > On Tue, Mar 30, 2010 at 10:47 AM, Dan Nicolaescu wrote: >> Ryan Thompson writes: >> >>> On Tue, Mar 30, 2010 at 8:46 AM, Dan Nicolaescu wrote: >>>> Ryan Thompson writes: >>>> >>>>> I am trying to set myself up using emacs --daemon so that I can easily >>>>> manage multiple emacs frames within one process. However, I have hit a >>>>> significant stumbling block. If I run emacs --daemon (or emacs -nw and >>>>> then do (server-start) ) and then repeatedly run emacsclient -c and >>>>> clost the resulting window, emacs will randomly crash. Sometimes it >>>>> happens on the first time that I run emacsclient -c, sometimes on the >>>>> 20th. >>>>> >>>>> I use Ubuntu 9.10, and I have reported this bug in Launchpad. However, >>>>> I have also compiled both emacs 23.1 and trunk from vanilla sources, >>>>> and both of these exhibit the same bug as the Ubuntu-packaged >>>>> versions. >>>>> >>>>> I have generated some stack traces by the following procedure, as >>>>> described at https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/543611 >>>>> >>>>> Open two terminals. In the first terminal, run the following commands >>>>> to start emacs with strace: >>>>> >>>>> $ mkdir -p /tmp/emacs-strace >>>>> $ strace -o /tmp/emacs-strace/trace-`date +%s`.log emacs -Q -nw >>>>> >>>>> When emacs has started, do M-x server-start so that emacsclient can >>>>> work. Now, in the second terminal, run the following command: >>>>> >>>>> $ x=0; while emacsclient -c ; do x=$(( $x + 1 )); done; echo "Created >>>>> $x windows before crash." >>>>> >>>>> Now, an emacs window will open. Close it. Each time you close a >>>>> window, a new emacs window will open. Keep closing each one that >>>>> appears. If emacs exhibits the bug, then eventually you will close one >>>>> window, and emacs will crash when it tries to create the next one. At >>>>> this point, you can go get your stack trace in /tmp/emacs-strace. >>>> >>>> This is very likely due to a long standing bug in Gtk+, see: >>>> http://bugzilla.gnome.org/show_bug.cgi?id=85715 >>>> >>>> Please compile emacs using >>>> >>>> ./configure --with-x-toolkit=lucid >>>> >>>> and try to reproduce the problem you are seeing with that emacs. >>>> >>> >>> I tried that; same problem. Would you like a stack trace? >> >> Sure, for the lucid version please. >> But please get the stack trace using by attaching gdb to emacs. >> See etc/DEBUG for more info. >> >> Also, please start emacs using "emacs -Q" >> >> >> > > I tried to figure out gdb, but I couldn't figure it out in the time I > had. But I have been running all my tests with -Q. I'll try again when > I have more time to mess around with it. cd emacs/src gdb ./emacs run -Q -nw -f server-start do whatever you do to to crash emacs, and when that happens type xbacktrace in gdb Again, this is only useful for the version compiled using ./configure --with-x-toolkit=lucid From debbugs-submit-bounces@debbugs.gnu.org Sat Apr 03 17:20:34 2010 Received: (at 5802) by debbugs.gnu.org; 3 Apr 2010 21:20:35 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NyAle-0007dv-FS for submit@debbugs.gnu.org; Sat, 03 Apr 2010 17:20:34 -0400 Received: from mail-iw0-f192.google.com ([209.85.223.192]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NyAlY-0007do-Q7 for 5802@debbugs.gnu.org; Sat, 03 Apr 2010 17:20:32 -0400 Received: by iwn30 with SMTP id 30so2131512iwn.28 for <5802@debbugs.gnu.org>; Sat, 03 Apr 2010 14:20:24 -0700 (PDT) MIME-Version: 1.0 Received: by 10.231.14.193 with HTTP; Sat, 3 Apr 2010 14:20:04 -0700 (PDT) In-Reply-To: References: <2a4ba2fd1003251154w52283ce8w9a728b4d1e1c4170@mail.gmail.com> <2a4ba2fd1003291508t5fccd372h2c13bbd3f19f83f7@mail.gmail.com> <2a4ba2fd1003301006w23d9110ch87068e1a6862a687@mail.gmail.com> From: Ryan Thompson Date: Sat, 3 Apr 2010 14:20:04 -0700 Received: by 10.231.153.205 with SMTP id l13mr1685787ibw.64.1270329624253; Sat, 03 Apr 2010 14:20:24 -0700 (PDT) Message-ID: Subject: Re: bug#5802: emacsclient -c crashes emacs --daemon intermittently; have strace To: Dan Nicolaescu Content-Type: text/plain; charset=ISO-8859-1 X-Spam-Score: -1.5 (-) X-Debbugs-Envelope-To: 5802 Cc: 5802@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) On Thu, Apr 1, 2010 at 12:50 PM, Dan Nicolaescu wrote: > Ryan Thompson writes: > >> On Tue, Mar 30, 2010 at 10:47 AM, Dan Nicolaescu wrote: >>> Ryan Thompson writes: >>> >>>> On Tue, Mar 30, 2010 at 8:46 AM, Dan Nicolaescu wrote: >>>>> Ryan Thompson writes: >>>>> >>>>>> I am trying to set myself up using emacs --daemon so that I can easily >>>>>> manage multiple emacs frames within one process. However, I have hit a >>>>>> significant stumbling block. If I run emacs --daemon (or emacs -nw and >>>>>> then do (server-start) ) and then repeatedly run emacsclient -c and >>>>>> clost the resulting window, emacs will randomly crash. Sometimes it >>>>>> happens on the first time that I run emacsclient -c, sometimes on the >>>>>> 20th. >>>>>> >>>>>> I use Ubuntu 9.10, and I have reported this bug in Launchpad. However, >>>>>> I have also compiled both emacs 23.1 and trunk from vanilla sources, >>>>>> and both of these exhibit the same bug as the Ubuntu-packaged >>>>>> versions. >>>>>> >>>>>> I have generated some stack traces by the following procedure, as >>>>>> described at https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/543611 >>>>>> >>>>>> Open two terminals. In the first terminal, run the following commands >>>>>> to start emacs with strace: >>>>>> >>>>>> $ mkdir -p /tmp/emacs-strace >>>>>> $ strace -o /tmp/emacs-strace/trace-`date +%s`.log emacs -Q -nw >>>>>> >>>>>> When emacs has started, do M-x server-start so that emacsclient can >>>>>> work. Now, in the second terminal, run the following command: >>>>>> >>>>>> $ x=0; while emacsclient -c ; do x=$(( $x + 1 )); done; echo "Created >>>>>> $x windows before crash." >>>>>> >>>>>> Now, an emacs window will open. Close it. Each time you close a >>>>>> window, a new emacs window will open. Keep closing each one that >>>>>> appears. If emacs exhibits the bug, then eventually you will close one >>>>>> window, and emacs will crash when it tries to create the next one. At >>>>>> this point, you can go get your stack trace in /tmp/emacs-strace. >>>>> >>>>> This is very likely due to a long standing bug in Gtk+, see: >>>>> http://bugzilla.gnome.org/show_bug.cgi?id=85715 >>>>> >>>>> Please compile emacs using >>>>> >>>>> ./configure --with-x-toolkit=lucid >>>>> >>>>> and try to reproduce the problem you are seeing with that emacs. >>>>> >>>> >>>> I tried that; same problem. Would you like a stack trace? >>> >>> Sure, for the lucid version please. >>> But please get the stack trace using by attaching gdb to emacs. >>> See etc/DEBUG for more info. >>> >>> Also, please start emacs using "emacs -Q" >>> >>> >>> >> >> I tried to figure out gdb, but I couldn't figure it out in the time I >> had. But I have been running all my tests with -Q. I'll try again when >> I have more time to mess around with it. > > cd emacs/src > gdb ./emacs > run -Q -nw -f server-start > > > do whatever you do to to crash emacs, and when that happens type > > xbacktrace > > in gdb > > Again, this is only useful for the version compiled using ./configure --with-x-toolkit=lucid > On further inspection, I can no longer reproduce the crash --with-x-toolkit=lucid. The segfault in the gtk version occurs in "gdk_screen_get_display," from /usr/lib/libgdk-x11-2.0.so.0, which is in Ubuntu package libgtk2.0-0 version 2.18.3-1ubuntu2.2. When the lucid version, emacs does not crash, but for some reason, when I run the emacsclient frame-creating loop that I described previously, sometimes the client frame disappears as soon as it appears, and I assumed that a crash had occurred. But in this case, emacs does not crash, and I only get the problem in a loop like this. Simply running "emacsclient -c" manually over and over at the command-line never causes a frame to disappear. So, I think I will move forward using the lucid version, and you can mark this as a GTK problem. Thanks for your patience. From debbugs-submit-bounces@debbugs.gnu.org Fri Apr 09 02:11:42 2010 Received: (at 5802-done) by debbugs.gnu.org; 9 Apr 2010 06:11:43 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O07RO-0002vR-BC for submit@debbugs.gnu.org; Fri, 09 Apr 2010 02:11:42 -0400 Received: from paul-mcgann-v0.ics.uci.edu ([128.195.1.147]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O07RL-0002vM-GM for 5802-done@debbugs.gnu.org; Fri, 09 Apr 2010 02:11:40 -0400 Received: from godzilla.ics.uci.edu (godzilla.ics.uci.edu [128.195.10.101]) by paul-mcgann-v0.ics.uci.edu (8.13.8/8.13.8) with ESMTP id o396BTBL028800 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 8 Apr 2010 23:11:29 -0700 Received: (from dann@localhost) by godzilla.ics.uci.edu (8.13.8+Sun/8.13.6/Submit) id o396BSuA013644; Thu, 8 Apr 2010 23:11:28 -0700 (PDT) Date: Thu, 8 Apr 2010 23:11:28 -0700 (PDT) Message-Id: <201004090611.o396BSuA013644@godzilla.ics.uci.edu> From: Dan Nicolaescu To: Ryan Thompson Subject: Re: bug#5802: emacsclient -c crashes emacs --daemon intermittently; have strace References: <2a4ba2fd1003251154w52283ce8w9a728b4d1e1c4170@mail.gmail.com> <2a4ba2fd1003291508t5fccd372h2c13bbd3f19f83f7@mail.gmail.com> <2a4ba2fd1003301006w23d9110ch87068e1a6862a687@mail.gmail.com> X-Debbugs-No-Ack: yes In-Reply-To: (Ryan Thompson's message of "Sat, 3 Apr 2010 14:20:04 -0700") Lines: 102 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-ICS-MailScanner-Information: Please send mail to helpdesk@ics.uci.edu or more information X-ICS-MailScanner-ID: o396BTBL028800 X-ICS-MailScanner: Found to be clean X-ICS-MailScanner-SpamCheck: not spam, SpamAssassin (not cached, score=-1.363, required 5, autolearn=disabled, ALL_TRUSTED -1.44, TW_GT 0.08) X-ICS-MailScanner-From: dann@godzilla.ics.uci.edu X-Spam-Status: No X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: 5802-done Cc: 5802-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) Ryan Thompson writes: > On Thu, Apr 1, 2010 at 12:50 PM, Dan Nicolaescu wrote: > > Ryan Thompson writes: > > > >> On Tue, Mar 30, 2010 at 10:47 AM, Dan Nicolaescu wrote: > >>> Ryan Thompson writes: > >>> > >>>> On Tue, Mar 30, 2010 at 8:46 AM, Dan Nicolaescu wrote: > >>>>> Ryan Thompson writes: > >>>>> > >>>>>> I am trying to set myself up using emacs --daemon so that I can easily > >>>>>> manage multiple emacs frames within one process. However, I have hit a > >>>>>> significant stumbling block. If I run emacs --daemon (or emacs -nw and > >>>>>> then do (server-start) ) and then repeatedly run emacsclient -c and > >>>>>> clost the resulting window, emacs will randomly crash. Sometimes it > >>>>>> happens on the first time that I run emacsclient -c, sometimes on the > >>>>>> 20th. > >>>>>> > >>>>>> I use Ubuntu 9.10, and I have reported this bug in Launchpad. However, > >>>>>> I have also compiled both emacs 23.1 and trunk from vanilla sources, > >>>>>> and both of these exhibit the same bug as the Ubuntu-packaged > >>>>>> versions. > >>>>>> > >>>>>> I have generated some stack traces by the following procedure, as > >>>>>> described at https://bugs.launchpad.net/ubuntu/+source/emacs23/+bug/543611 > >>>>>> > >>>>>> Open two terminals. In the first terminal, run the following commands > >>>>>> to start emacs with strace: > >>>>>> > >>>>>> $ mkdir -p /tmp/emacs-strace > >>>>>> $ strace -o /tmp/emacs-strace/trace-`date +%s`.log emacs -Q -nw > >>>>>> > >>>>>> When emacs has started, do M-x server-start so that emacsclient can > >>>>>> work. Now, in the second terminal, run the following command: > >>>>>> > >>>>>> $ x=0; while emacsclient -c ; do x=$(( $x + 1 )); done; echo "Created > >>>>>> $x windows before crash." > >>>>>> > >>>>>> Now, an emacs window will open. Close it. Each time you close a > >>>>>> window, a new emacs window will open. Keep closing each one that > >>>>>> appears. If emacs exhibits the bug, then eventually you will close one > >>>>>> window, and emacs will crash when it tries to create the next one. At > >>>>>> this point, you can go get your stack trace in /tmp/emacs-strace. > >>>>> > >>>>> This is very likely due to a long standing bug in Gtk+, see: > >>>>> http://bugzilla.gnome.org/show_bug.cgi?id=85715 > >>>>> > >>>>> Please compile emacs using > >>>>> > >>>>> ./configure --with-x-toolkit=lucid > >>>>> > >>>>> and try to reproduce the problem you are seeing with that emacs. > >>>>> > >>>> > >>>> I tried that; same problem. Would you like a stack trace? > >>> > >>> Sure, for the lucid version please. > >>> But please get the stack trace using by attaching gdb to emacs. > >>> See etc/DEBUG for more info. > >>> > >>> Also, please start emacs using "emacs -Q" > >>> > >>> > >>> > >> > >> I tried to figure out gdb, but I couldn't figure it out in the time I > >> had. But I have been running all my tests with -Q. I'll try again when > >> I have more time to mess around with it. > > > > cd emacs/src > > gdb ./emacs > > run -Q -nw -f server-start > > > > > > do whatever you do to to crash emacs, and when that happens type > > > > xbacktrace > > > > in gdb > > > > Again, this is only useful for the version compiled using ./configure --with-x-toolkit=lucid > > > > On further inspection, I can no longer reproduce the crash > --with-x-toolkit=lucid. The segfault in the gtk version occurs in > "gdk_screen_get_display," from /usr/lib/libgdk-x11-2.0.so.0, which is > in Ubuntu package libgtk2.0-0 version 2.18.3-1ubuntu2.2. > > When the lucid version, emacs does not crash, but for some reason, > when I run the emacsclient frame-creating loop that I described > previously, sometimes the client frame disappears as soon as it > appears, and I assumed that a crash had occurred. But in this case, > emacs does not crash, and I only get the problem in a loop like this. > Simply running "emacsclient -c" manually over and over at the > command-line never causes a frame to disappear. So, I think I will > move forward using the lucid version, and you can mark this as a GTK > problem. > > Thanks for your patience. Closing this the, we have plenty of similar reports. From unknown Tue Jun 17 20:11:50 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 07 May 2010 11:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 03 13:59:44 2010 Received: (at control) by debbugs.gnu.org; 3 Sep 2010 17:59:44 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OraYC-00088Y-Hg for submit@debbugs.gnu.org; Fri, 03 Sep 2010 13:59:44 -0400 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OraYA-00088Q-G9 for control@debbugs.gnu.org; Fri, 03 Sep 2010 13:59:42 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.69) (envelope-from ) id 1OraZr-0004ya-A7; Fri, 03 Sep 2010 14:01:27 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <19585.14327.180589.231894@fencepost.gnu.org> Date: Fri, 3 Sep 2010 14:01:27 -0400 From: Glenn Morris To: control Subject: control X-Attribution: GM X-Mailer: VM (www.wonderworks.com/vm), GNU Emacs (www.gnu.org/software/emacs) X-Hue: white X-Ran: _|gKa*I>rS"as{C'f9N$/UJR9rP5_e$&p:#PJgw2ALY7q List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -5.2 (-----) unarchive 95 unarchive 4121 merge 95 4121 unarchive 1493 unarchive 4078 unarchive 5802 merge 1493 4078 5802 From unknown Tue Jun 17 20:11:50 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 02 Oct 2010 11:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator From debbugs-submit-bounces@debbugs.gnu.org Tue May 31 17:29:38 2011 Received: (at control) by debbugs.gnu.org; 31 May 2011 21:29:38 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QRWVO-00031E-0H for submit@debbugs.gnu.org; Tue, 31 May 2011 17:29:38 -0400 Received: from fencepost.gnu.org ([140.186.70.10]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1QRWVN-000314-17 for control@debbugs.gnu.org; Tue, 31 May 2011 17:29:37 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1QRWVH-0006oK-SX for control@debbugs.gnu.org; Tue, 31 May 2011 17:29:32 -0400 Date: Tue, 31 May 2011 17:29:31 -0400 Message-Id: Subject: control message for bug 8750 To: X-Mailer: mail (GNU Mailutils 2.1) From: Glenn Morris X-Spam-Score: -6.3 (------) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.3 (------) unarchive 1493 forcemerge 1493 8750 From unknown Tue Jun 17 20:11:50 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 29 Jun 2011 11:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 20 13:15:01 2012 Received: (at control) by debbugs.gnu.org; 20 Jun 2012 17:15:01 +0000 Received: from localhost ([127.0.0.1]:50121 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1ShOUe-0001kw-R4 for submit@debbugs.gnu.org; Wed, 20 Jun 2012 13:15:01 -0400 Received: from fencepost.gnu.org ([208.118.235.10]:50814) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1ShOUc-0001kp-SZ for control@debbugs.gnu.org; Wed, 20 Jun 2012 13:14:59 -0400 Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1ShORG-00055J-4p for control@debbugs.gnu.org; Wed, 20 Jun 2012 13:11:30 -0400 Date: Wed, 20 Jun 2012 13:11:30 -0400 Message-Id: Subject: control message for bug 11741 To: X-Mailer: mail (GNU Mailutils 2.1) From: Glenn Morris X-Spam-Score: -6.9 (------) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.9 (------) unarchive 8750 merge 8750 11741 From unknown Tue Jun 17 20:11:50 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 19 Jul 2012 11:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator From debbugs-submit-bounces@debbugs.gnu.org Mon Jul 23 00:06:10 2012 Received: (at control) by debbugs.gnu.org; 23 Jul 2012 04:06:10 +0000 Received: from localhost ([127.0.0.1]:58254 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1St9uM-00045q-8a for submit@debbugs.gnu.org; Mon, 23 Jul 2012 00:06:10 -0400 Received: from mail-vc0-f172.google.com ([209.85.220.172]:49992) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1St9uK-00045j-5a for control@debbugs.gnu.org; Mon, 23 Jul 2012 00:06:08 -0400 Received: by vcbfo14 with SMTP id fo14so5948729vcb.3 for ; Sun, 22 Jul 2012 20:59:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=+5MvtlnwYfJ660w5BrCN1bZOcV529z5KsC8fBj94A0o=; b=FzQSaLbezXtKeT8hC2wj4byywXEPDIy2LZDD7sRhWJQl298EC3VwuAdU6GPGGRcZeZ KYxsSuHr+mdpCUtkluJxV9XOIpJmv3gqtmZDxxCTt0UHufmnm/UiSNGJpiMMQ7XtpHXM 5NIeAffgaskdcbUW1iQEd2U0q9R6WE9JzcnWMxZu7Hf+uD4DF1Fk1qsLxV4IbHXMq63x 07Gl3aMxsYN5hbBFpU4Zdmqs0aizXz1d3D3bB+RwGU2P+ftFWezrGhSLm+Ah+q0FGkr/ HPkw4ScS4mGQS2N2CiwHWpu9yzUapcIwsjGVq1evKaGQYwhpE7tT9wkRhiCdFCxXzqKU 5MMw== MIME-Version: 1.0 Received: by 10.52.90.144 with SMTP id bw16mr9722566vdb.129.1343015975923; Sun, 22 Jul 2012 20:59:35 -0700 (PDT) Received: by 10.220.110.138 with HTTP; Sun, 22 Jul 2012 20:59:35 -0700 (PDT) Date: Mon, 23 Jul 2012 00:59:35 -0300 Message-ID: Subject: unarchive 11741 From: Alejandro Benitez To: control@debbugs.gnu.org Content-Type: text/plain; charset=ISO-8859-1 X-Spam-Score: -2.6 (--) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -2.6 (--) unarchive 11741 Hi, Looks like this actually is a regression as the steps to reproduce that described the OP are not the the same as the know problem. 1. I start an Emacs daemon, even outside of X 2. then open an emacsclient frame in X 3. then C-x 5 0 4. then exit X 5. the daemon dies Step 3 means that the frame should be deleted before the X server for that frame would supposedly crash or exit unexpectedly. The actual problem is that the frame is not successfully deleted before exiting X, although it looks like it does. Emacs 23.4.1 does delete the frame successfully, so when I exit the X server I don't get a "there is currently 1 client connected" message that when I get with Emacs 24.1. I was able to reproduce this in Emacs 24.1 i686-pc-cygwin, GTK+. Emacs 23.4.1 i686-pc-cygwin, GTK+ does not die after performing the 4 steps above. From unknown Tue Jun 17 20:11:50 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 17 Sep 2012 11:24:02 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator