1.0.3.48: mark JOIN-THREAD as experimental
authorGabor Melis <mega@hotpop.com>
Fri, 23 Mar 2007 16:09:49 +0000 (16:09 +0000)
committerGabor Melis <mega@hotpop.com>
Fri, 23 Mar 2007 16:09:49 +0000 (16:09 +0000)
NEWS
src/code/target-thread.lisp
version.lisp-expr

diff --git a/NEWS b/NEWS
index 04d4735..c8131fe 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -9,7 +9,7 @@ changes in sbcl-1.0.4 relative to sbcl-1.0.3:
   * change: runtimes with embedded cores (i.e. saved with :EXECUTABLE T)
     don't print the startup banner, but behave as if --noinform was passed
     as a command line argument. (thanks to Kevin Reid)
-  * new feature: added JOIN-THREAD (by NIIMI Satoshi)
+  * new experimental feature: added JOIN-THREAD (by NIIMI Satoshi)
   * optimization: code using alien values with undeclared types is much faster.
   * optimization: the compiler is now able to open code SEARCH in more cases.
   * optimization: more compact typechecks on x86-64 (thanks to Lutz Euler)
index 5d1009b..865cac4 100644 (file)
@@ -698,7 +698,9 @@ around and can be retrieved by JOIN-THREAD."
   #!+sb-doc
   "Suspend current thread until THREAD exits. Returns the result
 values of the thread function. If the thread does not exit normally,
-return DEFAULT or signal JOIN-THREAD-ERROR depending on ERRORP."
+return DEFAULT or signal JOIN-THREAD-ERROR depending on ERRORP. This
+function is experimental and it is likely to be changed in the
+future."
   (with-mutex ((thread-result-lock thread))
     (cond ((car (thread-result thread))
            (values-list (cdr (thread-result thread))))
index daae2b1..5853351 100644 (file)
@@ -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.3.47"
+"1.0.3.48"