summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2017-07-30 17:12:53 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2017-07-30 17:12:53 -0500
commit780110f4225b46ac0cf78525f930143a23c84912 (patch)
tree88339341fee9f6e90ce0a4a0b4e4ceee9a1e55a2
parentAdd local ping-pong benchmark (diff)
downloadguile-fibers-780110f4225b46ac0cf78525f930143a23c84912.tar.gz
Document signal-condition!
* fibers.texi (Conditions): Document signal-condition!
-rw-r--r--fibers.texi5
1 files changed, 5 insertions, 0 deletions
diff --git a/fibers.texi b/fibers.texi
index 9c139de..09f8efd 100644
--- a/fibers.texi
+++ b/fibers.texi
@@ -710,6 +710,11 @@ Return @code{#t} if @var{obj} is a condition variable, or @code{#f}
otherwise.
@end defun
+@defun signal-condition! cvar
+Signal @var{cvar}, notifying all waiting fibers and preventing
+blocking of future fibers waiting on this condition.
+@end defun
+
@defun wait-operation cvar
Make an operation that will succeed with no values when @var{cvar}
becomes signalled.