X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcold%2Fshared.lisp;h=d088aa2ad7f863c920061eef636907ac33504ff2;hb=8dc064d2296902f01afd9107e89a81146e3771fe;hp=dd77c8e8e27829a493bb322caa70402a4093802a;hpb=83fd554b67913275d8dc06edcad8b2f065c89c49;p=sbcl.git diff --git a/src/cold/shared.lisp b/src/cold/shared.lisp index dd77c8e..d088aa2 100644 --- a/src/cold/shared.lisp +++ b/src/cold/shared.lisp @@ -17,10 +17,10 @@ ;;; GC tuning has little effect on the x86 due to the generational ;;; collector. For the older stop & copy collector, it assuredly -;;; does. GC time is proportional to the amount of non-grabage +;;; does. GC time is proportional to the amount of non-garbage ;;; needing collection and copying; when the application involved is -;;; the SBCL compiler, it doesn't take any longer to collect 20Mb than -;;; 2 -dan, 20000819 +;;; the SBCL compiler, it doesn't take any longer to collect 20 Mb than +;;; to collect 2 Mb. -dan, 20000819 ;;; ;;; Actually, tweaking *BYTES-CONSED-BETWEEN-GCS* to 20Mb instead of ;;; the default 2 seemed to make SBCL rebuild O(25%) faster on my 256 @@ -32,7 +32,7 @@ #+(and sbcl alpha) ; SBCL/Alpha uses stop-and-copy, and Alphas have lotso RAM. (progn (sb-ext:gc-off) - (setf sb-kernel::*bytes-consed-between-gcs* (* 20 (expt 10 6))) + (setf (bytes-consed-between-gcs) (* 20 (expt 10 6))) (sb-ext:gc-on) (sb-ext:gc))