From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Richard Stallman Newsgroups: gmane.emacs.devel Subject: Re: Fix to long-standing crashes in GC Date: Thu, 20 May 2004 09:17:57 -0400 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: References: <40A3BC23.8060000@math.ku.dk> <200405180013.i4I0Ddl15818@raven.dms.auburn.edu> Reply-To: rms@gnu.org NNTP-Posting-Host: deer.gmane.org X-Trace: sea.gmane.org 1085081180 26791 80.91.224.253 (20 May 2004 19:26:20 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 20 May 2004 19:26:20 +0000 (UTC) Cc: emacs-devel@gnu.org, teirllm@dms.auburn.edu, storm@cua.dk Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Thu May 20 21:26:13 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BQtBF-0000wL-00 for ; Thu, 20 May 2004 21:26:13 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1BQtBF-00079m-00 for ; Thu, 20 May 2004 21:26:13 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BQnWX-0003Qn-Bs for emacs-devel@quimby.gnus.org; Thu, 20 May 2004 09:23:49 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.34) id 1BQnRZ-000254-2m for emacs-devel@gnu.org; Thu, 20 May 2004 09:18:41 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.34) id 1BQnQs-0001vw-Rh for emacs-devel@gnu.org; Thu, 20 May 2004 09:18:34 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BQnQs-0001vn-A4 for emacs-devel@gnu.org; Thu, 20 May 2004 09:17:58 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1BQnQr-0004zb-Uc; Thu, 20 May 2004 09:17:58 -0400 Original-To: Stefan Monnier In-reply-to: (message from Stefan Monnier on 19 May 2004 15:32:22 -0400) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:23796 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:23796 But that's already checked: mark_memory calls makr_maybe_object and makr_maybe_pointer, but of which check for every object whether it's currently live (which really means "allocated" in the sense that it hasn't been reclaimed by the GC yet). That's what live_consp_, live_stringp_p, ... are for. I had not noticed the function mark_maybe_object when I wrote my previous message. Now I am as puzzled as you are by this failure.