From: Gabor Melis Date: Fri, 23 Mar 2007 16:09:49 +0000 (+0000) Subject: 1.0.3.48: mark JOIN-THREAD as experimental X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=c8ae3dcc237260a952ac71ef08ed9ddfed1e9e1e;p=sbcl.git 1.0.3.48: mark JOIN-THREAD as experimental --- diff --git a/NEWS b/NEWS index 04d4735..c8131fe 100644 --- 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) diff --git a/src/code/target-thread.lisp b/src/code/target-thread.lisp index 5d1009b..865cac4 100644 --- a/src/code/target-thread.lisp +++ b/src/code/target-thread.lisp @@ -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)))) diff --git a/version.lisp-expr b/version.lisp-expr index daae2b1..5853351 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -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"