From: espen Date: Sun, 17 Apr 2005 21:38:15 +0000 (+0000) Subject: Made WITH-GC-DISABLED just a wrapper for internal CMUCL/SBCL macros X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/commitdiff_plain/6887e01d29db0f6bc4d5328e3d29155fc27f2951 Made WITH-GC-DISABLED just a wrapper for internal CMUCL/SBCL macros --- diff --git a/glib/utils.lisp b/glib/utils.lisp index b1b402c..822a673 100644 --- a/glib/utils.lisp +++ b/glib/utils.lisp @@ -15,7 +15,7 @@ ;; License along with this library; if not, write to the Free Software ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -;; $Id: utils.lisp,v 1.3 2005-02-03 23:09:05 espen Exp $ +;; $Id: utils.lisp,v 1.4 2005-04-17 21:38:15 espen Exp $ (in-package "GLIB") @@ -45,15 +45,8 @@ (defun type-expand-to (type form) (expand form))) (defmacro with-gc-disabled (&body body) - (let ((gc-inhibit (make-symbol "GC-INHIBIT"))) - `(progn - (let ((,gc-inhibit #+cmu lisp::*gc-inhibit* - #+sbcl sb-impl::*gc-inhibit*)) - (gc-off) - (unwind-protect - ,@body - (unless ,gc-inhibit - (gc-on))))))) + #+cmu`(system:without-gcing ,@body) + #+sbcl`(sb-impl::without-gcing ,@body)) (defun mklist (obj) (if (and obj (atom obj)) (list obj) obj))