summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Erik Werner <martinerikwerner@gmail.com>2019-10-02 23:22:25 +0200
committerJoel Sherrill <joel@rtems.org>2019-11-06 18:37:44 -0600
commita62dfdeaa24cc09fac350fb14e32a64c4595c076 (patch)
tree2cdbf5c99cad1249bb1e0e73c8e153af5c91018e
parentbarrier: Remove more semaphore leftovers (diff)
downloadrtems-docs-a62dfdeaa24cc09fac350fb14e32a64c4595c076.tar.bz2
barrier: Reword "forever" -> "until [..] released"
-rw-r--r--c-user/barrier_manager.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/c-user/barrier_manager.rst b/c-user/barrier_manager.rst
index 72629bf..dc50eb5 100644
--- a/c-user/barrier_manager.rst
+++ b/c-user/barrier_manager.rst
@@ -357,7 +357,7 @@ DESCRIPTION:
This directive waits at the barrier specified by ``id``. The timeout
parameter specifies the maximum interval the calling task is willing to be
blocked waiting for the barrier. If it is set to ``RTEMS_NO_TIMEOUT``,
- then the calling task will wait forever.
+ then the calling task will wait until the barrier is released.
Conceptually, the calling task should always be thought of as blocking when
it makes this call and being unblocked when the barrier is released. If