Skip to content
Snippets Groups Projects
Commit a890b8dd authored by wlott's avatar wlott
Browse files

Changed purify to bind *INTERNAL-GC* and then invoke the garbage collector

so all the auxiliary stuff (hooks, etc.) gets handled correctly.
parent 37f223d0
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/purify.lisp,v 1.12 1992/02/14 23:45:24 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/purify.lisp,v 1.13 1992/03/26 03:18:51 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -23,16 +23,19 @@ ...@@ -23,16 +23,19 @@
(read-only-roots c-call:unsigned-long)) (read-only-roots c-call:unsigned-long))
(defun purify (&key root-structures constants) (defun purify (&key root-structures constants)
(write-string "[Doing purification: ") (let ((*gc-notify-before*
(force-output) #'(lambda (bytes-in-use)
(without-gcing (declare (ignore bytes-in-use))
(clear-auto-gc-trigger) (write-string "[Doing purification: ")
(%purify (get-lisp-obj-address root-structures) (force-output)))
(get-lisp-obj-address constants)) (*internal-gc*
(when *gc-trigger* #'(lambda ()
(setf *gc-trigger* *bytes-consed-between-gcs*) (%purify (get-lisp-obj-address root-structures)
(set-auto-gc-trigger *gc-trigger*))) (get-lisp-obj-address constants))))
(write-line "Done.]") (*gc-notify-after*
(force-output) #'(lambda (&rest ignore)
(declare (ignore ignore))
(write-line "Done.]"))))
(gc t))
nil) nil)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment