From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Bill Schottstaedt Newsgroups: gmane.lisp.guile.bugs Subject: Re: GC missed a reference Date: Wed, 28 Apr 2004 09:25:11 -0700 Sender: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Message-ID: <408FDAE7.4000006@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 1083169750 25986 80.91.224.253 (28 Apr 2004 16:29:10 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 28 Apr 2004 16:29:10 +0000 (UTC) Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Wed Apr 28 18:28:44 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 1BIrvP-0007Ln-00 for ; Wed, 28 Apr 2004 18:28:43 +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 1BIrsf-0005KL-KK for guile-bugs@m.gmane.org; Wed, 28 Apr 2004 12:25:53 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.30) id 1BIrsZ-0005Jp-Fr for bug-guile@gnu.org; Wed, 28 Apr 2004 12:25:47 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.30) id 1BIrs2-0005EY-Jy for bug-guile@gnu.org; Wed, 28 Apr 2004 12:25:45 -0400 Original-Received: from [171.67.16.117] (helo=smtp3.Stanford.EDU) by monty-python.gnu.org with esmtp (Exim 4.30) id 1BIrs2-0005EM-67 for bug-guile@gnu.org; Wed, 28 Apr 2004 12:25:14 -0400 Original-Received: from cm-mail.stanford.edu (cm-mail.Stanford.EDU [171.64.197.135]) by smtp3.Stanford.EDU (8.12.11/8.12.11) with ESMTP id i3SGPBjd005855 for ; Wed, 28 Apr 2004 09:25:12 -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 i3SGPBx11947 for ; 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 X-Accept-Language: en-us, en Original-To: bug-guile@gnu.org X-BeenThere: bug-guile@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Bug reports for GUILE, GNU's Ubiquitous Extension Language" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.bugs:1367 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.bugs:1367 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; _______________________________________________ Bug-guile mailing list Bug-guile@gnu.org http://mail.gnu.org/mailman/listinfo/bug-guile