diff options
author | Andy Wingo <wingo@pobox.com> | 2016-11-01 19:40:19 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2016-11-01 19:40:19 +0100 |
commit | 4280c818c2f9cf3434489c522300c90efca4cada (patch) | |
tree | 1194a3df558848f86e8487c91a3361319cfaaf40 /doc/ref/api-scheduling.texi | |
parent | eeeee3297b8d4cb0717ee3b9ae5068b4f0b7f118 (diff) | |
download | guile-4280c818c2f9cf3434489c522300c90efca4cada.tar.gz |
api-scheduling.texi: Syntactic cleanups.
* doc/ref/api-scheduling.texi: Remove vestigial comments.
Diffstat (limited to 'doc/ref/api-scheduling.texi')
-rw-r--r-- | doc/ref/api-scheduling.texi | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/doc/ref/api-scheduling.texi b/doc/ref/api-scheduling.texi index 6e9b5b180..ced192d7a 100644 --- a/doc/ref/api-scheduling.texi +++ b/doc/ref/api-scheduling.texi @@ -53,7 +53,6 @@ Return a list of all threads. Return the thread that called this function. @end deffn -@c begin (texi-doc-string "guile" "call-with-new-thread") @deffn {Scheme Procedure} call-with-new-thread thunk [handler] Call @code{thunk} in a new thread and with a new dynamic state, returning the new thread. The procedure @var{thunk} is called via @@ -87,7 +86,6 @@ Return @code{#t} ff @var{obj} is a thread; otherwise, return @code{#f}. @end deffn -@c begin (texi-doc-string "guile" "join-thread") @deffn {Scheme Procedure} join-thread thread [timeout [timeoutval]] @deffnx {C Function} scm_join_thread (thread) @deffnx {C Function} scm_join_thread_timed (thread, timeout, timeoutval) @@ -106,7 +104,6 @@ specified; @code{#f} is returned otherwise). Return @code{#t} if @var{thread} has exited, or @code{#f} otherwise. @end deffn -@c begin (texi-doc-string "guile" "yield") @deffn {Scheme Procedure} yield If one or more threads are waiting to execute, calling yield forces an immediate context switch to one of them. Otherwise, yield has no effect. |