From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kevin Ryde Newsgroups: gmane.lisp.guile.devel Subject: scm_must_malloc indexing Date: Sat, 09 Aug 2003 08:07:56 +1000 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <874r0rdcqr.fsf@zip.com.au> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1060397907 31719 80.91.224.253 (9 Aug 2003 02:58:27 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 9 Aug 2003 02:58:27 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sat Aug 09 04:58:53 2003 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 19lJwT-0001Ii-00 for ; Sat, 09 Aug 2003 04:58:53 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.20) id 19lJr8-0007rV-Gi for guile-devel@m.gmane.org; Fri, 08 Aug 2003 22:53:22 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.20) id 19lJTR-0001CG-Ej for guile-devel@gnu.org; Fri, 08 Aug 2003 22:28:53 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.20) id 19lJ3V-0003Hw-8P for guile-devel@gnu.org; Fri, 08 Aug 2003 22:02:36 -0400 Original-Received: from [61.8.0.36] (helo=snoopy.pacific.net.au) by monty-python.gnu.org with esmtp (Exim 4.20) id 19lFP8-0001Ud-6t for guile-devel@gnu.org; Fri, 08 Aug 2003 18:08:10 -0400 Original-Received: from sunny.pacific.net.au (sunny.pacific.net.au [203.2.228.40]) by snoopy.pacific.net.au (8.12.3/8.12.3/Debian-6.4) with ESMTP id h78M880J018085 for ; Sat, 9 Aug 2003 08:08:08 +1000 Original-Received: from wisma.pacific.net.au (wisma.pacific.net.au [210.23.129.72]) by sunny.pacific.net.au with ESMTP id h78M88Ch006227 for ; Sat, 9 Aug 2003 08:08:08 +1000 (EST) Original-Received: from localhost (ppp24.dyn228.pacific.net.au [203.143.228.24]) by wisma.pacific.net.au (8.12.9/8.12.9) with ESMTP id h78M86Ps020563 for ; Sat, 9 Aug 2003 08:08:07 +1000 (EST) Original-Received: from gg by localhost with local (Exim 3.35 #1 (Debian)) id 19lFOu-0000bD-00; Sat, 09 Aug 2003 08:07:56 +1000 Original-To: guile-devel@gnu.org Mail-Copies-To: never User-Agent: Gnus/5.090019 (Oort Gnus v0.19) Emacs/21.2 (gnu/linux) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.2 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:2685 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:2685 --=-=-= FYI, * scheme-memory.texi (Memory Blocks): Add index entries for deprecated scm_must_malloc and friends. --=-=-= Content-Disposition: attachment; filename=scheme-memory.texi.must-index.diff --- scheme-memory.texi.~1.14.~ 2003-06-12 08:41:53.000000000 +1000 +++ scheme-memory.texi 2003-08-08 18:34:58.000000000 +1000 @@ -170,6 +170,10 @@ @code{scm_must_free}. This section explains why we want you to stop using them, and how to do this. +@findex scm_must_malloc +@findex scm_must_realloc +@findex scm_must_calloc +@findex scm_must_free The functions @code{scm_must_malloc} and @code{scm_must_realloc} behaved like @code{scm_gc_malloc} and @code{scm_gc_realloc} do now, respectively. They would inform the GC about the newly allocated @@ -194,6 +198,8 @@ When this happened, the result was a dramatic increase in (senseless) GC activity which would effectively stop the program dead. +@findex scm_done_malloc +@findex scm_done_free The functions @code{scm_done_malloc} and @code{scm_done_free} were introduced to help restore balance to the force, but existing bugs did not magically disappear, of course. --=-=-= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://mail.gnu.org/mailman/listinfo/guile-devel --=-=-=--