From 300b1ae58a43756bdac8603fc338cbce9efb754e Mon Sep 17 00:00:00 2001 From: Neil Jerram Date: Fri, 1 Feb 2008 21:02:15 +0000 Subject: [PATCH] (Threads): Add "C Function scm_join_thread" to doc for join-thread. Thanks to Antoine Mathys for reporting that scm_join_thread was missing. --- THANKS | 1 + doc/ref/ChangeLog | 6 ++++++ doc/ref/api-scheduling.texi | 1 + 3 files changed, 8 insertions(+) diff --git a/THANKS b/THANKS index ee06ec799..be5a51d21 100644 --- a/THANKS +++ b/THANKS @@ -56,6 +56,7 @@ For fixes or providing information which led to a fix: Jeff Long Marco Maggi Gregory Marton + Antoine Mathys Dan McMahill Roger Mc Murtrie Han-Wen Nienhuys diff --git a/doc/ref/ChangeLog b/doc/ref/ChangeLog index fba40271a..33a79a219 100644 --- a/doc/ref/ChangeLog +++ b/doc/ref/ChangeLog @@ -1,3 +1,9 @@ +2008-02-01 Neil Jerram + + * api-scheduling.texi (Threads): Add "C Function scm_join_thread" + to doc for join-thread. Thanks to Antoine Mathys for reporting + that scm_join_thread was missing. + 2007-12-09 Stephen Compall * srfi-modules.texi (SRFI-69): Avoid use of the first person. diff --git a/doc/ref/api-scheduling.texi b/doc/ref/api-scheduling.texi index ebf705f2d..56fa20228 100644 --- a/doc/ref/api-scheduling.texi +++ b/doc/ref/api-scheduling.texi @@ -269,6 +269,7 @@ Once @var{body} or @var{handler} returns, the return value is made the @c begin (texi-doc-string "guile" "join-thread") @deffn {Scheme Procedure} join-thread thread +@deffnx {C Function} scm_join_thread (thread) Wait for @var{thread} to terminate and return its exit value. Threads that have not been created with @code{call-with-new-thread} or @code{scm_spawn_thread} have an exit value of @code{#f}.