summaryrefslogtreecommitdiffstats
path: root/c_user/barrier_manager.rst
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2016-02-18 10:32:05 +1100
committerAmar Takhar <verm@darkbeer.org>2016-05-02 20:51:26 -0400
commitf02e87257aa62bd8b78fb199a33a3cf1a5ad18be (patch)
treeb8a1480e099194ebea5f67a22e488567468abb22 /c_user/barrier_manager.rst
parentManually apply patch from textinfo dooc. (diff)
downloadrtems-docs-f02e87257aa62bd8b78fb199a33a3cf1a5ad18be.tar.bz2
Fix the double quotes.
Diffstat (limited to 'c_user/barrier_manager.rst')
-rw-r--r--c_user/barrier_manager.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/c_user/barrier_manager.rst b/c_user/barrier_manager.rst
index 0ef8677..616d922 100644
--- a/c_user/barrier_manager.rst
+++ b/c_user/barrier_manager.rst
@@ -51,7 +51,7 @@ Automatic barriers are created with a limit to the number of tasks which may
simultaneously block at the barrier. Once this limit is reached, all of the
tasks are released. For example, if the automatic limit is ten tasks, then the
first nine tasks calling the ``rtems_barrier_wait`` directive will block. When
-the tenth task calls the``rtems_barrier_wait`` directive, the nine blocked
+the tenth task calls the ``rtems_barrier_wait`` directive, the nine blocked
tasks will be released and the tenth task returns to the caller without
blocking.
@@ -106,9 +106,9 @@ Obtaining Barrier IDs
When a barrier is created, RTEMS generates a unique barrier ID and assigns it
to the created barrier until it is deleted. The barrier ID may be obtained by
-either of two methods. First, as the result of an invocation of
-the``rtems_barrier_create`` directive, the barrier ID is stored in a user
-provided location. Second, the barrier ID may be obtained later using the
+either of two methods. First, as the result of an invocation of the
+``rtems_barrier_create`` directive, the barrier ID is stored in a user provided
+location. Second, the barrier ID may be obtained later using the
``rtems_barrier_ident`` directive. The barrier ID is used by other barrier
manager directives to access this barrier.