Update of /cvsroot/sbcl/sbcl
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv1162
Modified Files:
base-target-features.lisp-expr version.lisp-expr
Log Message:
1.0.16.38: document :CYCLE-COUNTER feature in base-target-features.lisp-expr
* Weaseling out from renaming it to :SB-CYCLE-COUNTER, and deferring that
a bit: seems better to take care of all similar features that are really
just built-time conveniences automatically inferred at the same time.
Index: base-target-features.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/base-target-features.lisp-expr,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -d -r1.47 -r1.48
--- base-target-features.lisp-expr 30 Sep 2007 23:18:50 -0000 1.47
+++ base-target-features.lisp-expr 19 May 2008 13:47:17 -0000 1.48
@@ -145,6 +145,16 @@
;; code will also trap multiple readers.
; :sb-hash-table-debug
+ ;; Enabled automatically by make-config.sh for platforms which implement
+ ;; the %READ-CYCLE-COUNTER VOP. Can be disabled manually: affects TIME.
+ ;;
+ ;; FIXME: Should this be :SB-CYCLE-COUNTER instead? If so, then the same goes
+ ;; for :COMPARE-AND-SWAP-VOPS as well, and a bunch of others. Perhaps
+ ;; built-time convenience features like this should all live in eg. SB!INT
+ ;; instead?
+ ;;
+ ; :cycle-counter
+
;; Peter Van Eynde's increase-bulletproofness code for CMU CL
;;
;; Some of the code which was #+high-security before the fork has now
Index: version.lisp-expr
===================================================================
RCS file: /cvsroot/sbcl/sbcl/version.lisp-expr,v
retrieving revision 1.3950
retrieving revision 1.3951
diff -u -d -r1.3950 -r1.3951
--- version.lisp-expr 17 May 2008 20:05:09 -0000 1.3950
+++ version.lisp-expr 19 May 2008 13:47:17 -0000 1.3951
@@ -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.16.37"
+"1.0.16.38"
|