From ad5782987bdeb221673c62701d311e15de754f2d Mon Sep 17 00:00:00 2001 From: Nikodemus Siivola Date: Tue, 6 Nov 2007 13:43:25 +0000 Subject: [PATCH] 1.0.11.10: remove useless WITHOUT-GCING * The surrounding WITH-RECURSIVE-SYSTEM-SPINLOCK has :WITHOUT-GCING T. --- src/code/target-hash-table.lisp | 3 +-- version.lisp-expr | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/code/target-hash-table.lisp b/src/code/target-hash-table.lisp index 2e9147499..6b25a6e6b 100644 --- a/src/code/target-hash-table.lisp +++ b/src/code/target-hash-table.lisp @@ -497,8 +497,7 @@ multiple threads accessing the same hash-table without locking." (sb!thread::with-recursive-system-spinlock ((hash-table-spinlock hash-table) :without-gcing t) (when (rehash-without-growing-p) - (without-gcing - (rehash-without-growing hash-table)))))))) + (rehash-without-growing hash-table))))))) (declaim (inline update-hash-table-cache)) (defun update-hash-table-cache (hash-table index) diff --git a/version.lisp-expr b/version.lisp-expr index 84cd4b84a..8d943dc0f 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"1.0.11.9" +"1.0.11.10" -- 2.11.4.GIT