From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Bill Schottstaedt Newsgroups: gmane.lisp.guile.devel Subject: Re: GC missed a reference Date: Wed, 05 May 2004 04:42:36 -0700 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <4098D32C.9060607@ccrma> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1083759107 15664 80.91.224.253 (5 May 2004 12:11:47 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 5 May 2004 12:11:47 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Wed May 05 14:11:29 2004 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BLLFI-0001DI-00 for ; Wed, 05 May 2004 14:11:29 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.30) id 1BLLCQ-0004yL-Hh for guile-devel@m.gmane.org; Wed, 05 May 2004 08:08:30 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.30) id 1BLLAA-0004Nk-WE for guile-devel@gnu.org; Wed, 05 May 2004 08:06:10 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.30) id 1BLL81-0003jI-47 for guile-devel@gnu.org; Wed, 05 May 2004 08:04:28 -0400 Original-Received: from [171.67.16.125] (helo=smtp2.Stanford.EDU) by monty-python.gnu.org with esmtp (Exim 4.30) id 1BLKrP-0008JL-M0 for guile-devel@gnu.org; Wed, 05 May 2004 07:46:47 -0400 Original-Received: from cm-mail.stanford.edu (cm-mail.Stanford.EDU [171.64.197.135]) by smtp2.Stanford.EDU (8.12.11/8.12.11) with ESMTP id i45Bga5E024499 for ; Wed, 5 May 2004 04:42:37 -0700 Original-Received: from ccrma (cmn13.stanford.edu [171.64.197.162]) by cm-mail.stanford.edu (8.11.6/8.11.6) with ESMTP id i45Bgax02882 for ; Wed, 5 May 2004 04:42:36 -0700 User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4.2) Gecko/20040308 X-Accept-Language: en-us, en Original-To: guile-devel@gnu.org X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.devel:3672 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:3672 I wonder if this note to bug-guile got lost in the shuffle? From: Bill Schottstaedt Subject: Re: GC missed a reference Date: Wed, 28 Apr 2004 09:25:11 -0700 User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.4.2) Gecko/20040308 On the bug reported earilier, in hashtab.c, in rehash_after_gc, to_rehash is set to SCM_EOL, the rehash list is processed, then the weak_hashtables list is set to to_rehash -- this clobbers the entire list! Subsequent GC's then start freeing everything in every weak hash table, including the symbol table. I think the line (287 in the version I have) should be: weak_hashtables = last; _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://mail.gnu.org/mailman/listinfo/guile-devel