changeset 886:011e1bce6ece

[xemacs-hg @ 2002-06-28 14:20:41 by michaels] 2002-06-27 Mike Sperber <mike@xemacs.org> * dumped-lisp.el (preloaded-file-list): Added post-gc.el. * post-gc.el: Create.
author michaels
date Fri, 28 Jun 2002 14:20:42 +0000
parents 9a25b5ae3a51
children ccc3177ef10b
files lisp/ChangeLog lisp/dumped-lisp.el lisp/post-gc.el
diffstat 3 files changed, 56 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Thu Jun 27 22:50:29 2002 +0000
+++ b/lisp/ChangeLog	Fri Jun 28 14:20:42 2002 +0000
@@ -1,3 +1,9 @@
+2002-06-27  Mike Sperber <mike@xemacs.org>
+
+	* dumped-lisp.el (preloaded-file-list): Added post-gc.el.
+
+	* post-gc.el: Create.
+
 2002-06-24  John Paul Wallington  <jpw@shootybangbang.com>
 
 	* obsolete.el (frame-parameter): New compatibility function.
--- a/lisp/dumped-lisp.el	Thu Jun 27 22:50:29 2002 +0000
+++ b/lisp/dumped-lisp.el	Fri Jun 28 14:20:42 2002 +0000
@@ -7,6 +7,7 @@
 	"setup-paths"
 	"dump-paths"
 	"subr" 			; load the most basic Lisp functions
+	"post-gc"
 	"replace" 		; match-string used in version.el.
 	; Ignore compiled-by-mistake version.elc
 	"version.el"
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lisp/post-gc.el	Fri Jun 28 14:20:42 2002 +0000
@@ -0,0 +1,49 @@
+;;; post-gc.el --- post-gc actions
+
+;; Copyright (C) 1985-1986, 1990, 1992-1997 Free Software Foundation, Inc.
+;; Copyright (c) 1993, 1994 Sun Microsystems, Inc.
+;; Copyright (C) 1995 Board of Trustees, University of Illinois
+
+;; Author: Mike Sperber <mike@xemacs.org>
+;; Maintainer: XEmacs Development Team
+;; Keywords: internal, dumped
+
+;; This file is part of XEmacs.
+
+;; XEmacs is free software; you can redistribute it and/or modify it
+;; under the terms of the GNU General Public License as published by
+;; the Free Software Foundation; either version 2, or (at your option)
+;; any later version.
+
+;; XEmacs is distributed in the hope that it will be useful, but
+;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+;; General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with XEmacs; see the file COPYING.  If not, write to the 
+;; Free Software Foundation, 59 Temple Place - Suite 330,
+;; Boston, MA 02111-1307, USA.
+
+;;; Synched up with: Not in FSF.
+
+;;; Commentary:
+
+;; This file is dumped with XEmacs.
+
+;; This file defines actions to happen after each GC to perform
+;; additional cleanup, call finalizers, etc.
+
+(defun run-finalizers (alist)
+  "Run the finalizers for all objects that have just become unreachable."
+  (let ((info (assq 'finalize-list alist)))
+    (if info
+	(let ((finalize-list (cdr info)))
+	  (while finalize-list
+	    (funcall (cdr (car finalize-list)) (car (car finalize-list)))
+	    (setq finalize-list (cdr finalize-list)))))))
+
+(add-hook 'post-gc-hook 'run-finalizers)
+
+
+