Update of /cvsroot/sbcl/sbcl
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv25737
Modified Files:
NEWS version.lisp-expr
Log Message:
1.0.8.8: restore reuse-sap value after incomplete writes in FROB-OUTPUT-LATER
* Unless we do this, we leak each reusable sap that happens to hit this
code path.
* Thanks to David Smith.
Index: NEWS
===================================================================
RCS file: /cvsroot/sbcl/sbcl/NEWS,v
retrieving revision 1.1229
retrieving revision 1.1230
diff -u -d -r1.1229 -r1.1230
--- NEWS 27 Jul 2007 11:13:22 -0000 1.1229
+++ NEWS 27 Jul 2007 12:09:10 -0000 1.1230
@@ -2,6 +2,8 @@
changes in sbcl-1.0.9 relative to sbcl-1.0.8:
* bug fix: new compiler transforms for MEMBER and ASSOC were affected
by printer control variables. (reported by Dan Corkill)
+ * bug fix: system leaked memory when delayed output was performed by
+ the OS in smaller chunks then expected. (thanks to David Smith)
changes in sbcl-1.0.8 relative to sbcl-1.0.7:
* enhancement: experimental macro SB-EXT:COMPARE-AND-SWAP provides
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.3532
retrieving revision 1.3533
diff -u -d -r1.3532 -r1.3533
--- version.lisp-expr 27 Jul 2007 11:13:22 -0000 1.3532
+++ version.lisp-expr 27 Jul 2007 12:09:10 -0000 1.3533
@@ -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.8.7"
+"1.0.8.8"
|