From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Richard M. Stallman" Newsgroups: gmane.emacs.devel Subject: Re: Changes to th new GC percentage feature Date: Fri, 29 Jul 2005 23:34:00 -0400 Message-ID: References: Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1122694553 7059 80.91.229.2 (30 Jul 2005 03:35:53 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sat, 30 Jul 2005 03:35:53 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Jul 30 05:35:52 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1Dyi8R-0006EQ-3V for ged-emacs-devel@m.gmane.org; Sat, 30 Jul 2005 05:35:39 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DyiAx-0006Lx-Sg for ged-emacs-devel@m.gmane.org; Fri, 29 Jul 2005 23:38:15 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1DyiAR-00067h-Sa for emacs-devel@gnu.org; Fri, 29 Jul 2005 23:37:44 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DyiAO-00065Z-Ky for emacs-devel@gnu.org; Fri, 29 Jul 2005 23:37:41 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DyiAO-00064g-Ej for emacs-devel@gnu.org; Fri, 29 Jul 2005 23:37:40 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1DyiJJ-00075J-5T for emacs-devel@gnu.org; Fri, 29 Jul 2005 23:46:53 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1Dyi6q-0002Qg-I5; Fri, 29 Jul 2005 23:34:00 -0400 Original-To: Stefan Monnier In-reply-to: (message from Stefan Monnier on Fri, 29 Jul 2005 14:51:05 -0400) 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:41327 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:41327 what exactly is it trying to do? The only changes I can notice are: - the bytecode interpreter and the eval and funcall functions now check two values rather than one, thus being slower. - read_char tests gc_cons_threshold. There is code that temporarily changes gc_cons_threshold to prevent GC from occurring. It was broken and caused an infinite recursion. I think this is the clean fix. The slowdown is surely insignificant.