Update of /cvsroot/sbcl/sbcl
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv17122
Modified Files:
version.lisp-expr
Log Message:
1.0.37.14: fix the other half of the WAIT-ON-SEMAPHORE buglet
* ATOMIC-DECF doesn't do any good if the other write isn't atomic as
well: even though we are always holding the lock while incrementing
the waitcount, the possibly unlocked but atomic decrement means the
increment needs to be atomic too.
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.4806
retrieving revision 1.4807
diff -u -d -r1.4806 -r1.4807
--- version.lisp-expr 28 Mar 2010 20:08:38 -0000 1.4806
+++ version.lisp-expr 29 Mar 2010 08:05:11 -0000 1.4807
@@ -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.37.13"
+"1.0.37.14"
|