summaryrefslogtreecommitdiffstats
path: root/c-user/interrupt_manager.rst
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-02-01 13:38:41 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-02-01 13:42:39 +0100
commita0d2eeea9da0671faecb31c7f1e426f76e8bc506 (patch)
tree0ddf5f1016395b42d4f0a31ce114a411fbf65560 /c-user/interrupt_manager.rst
parentc-user: Move scheduler directives (diff)
downloadrtems-docs-a0d2eeea9da0671faecb31c7f1e426f76e8bc506.tar.bz2
Use "in X config..." instead of "on X config..."
Diffstat (limited to 'c-user/interrupt_manager.rst')
-rw-r--r--c-user/interrupt_manager.rst18
1 files changed, 9 insertions, 9 deletions
diff --git a/c-user/interrupt_manager.rst b/c-user/interrupt_manager.rst
index 529e896..f7c1ce8 100644
--- a/c-user/interrupt_manager.rst
+++ b/c-user/interrupt_manager.rst
@@ -446,7 +446,7 @@ DESCRIPTION:
NOTES:
This directive will not cause the calling task to be preempted.
- On SMP configurations this will not ensure system wide mutual exclusion.
+ In SMP configurations, this will not ensure system wide mutual exclusion.
Use interrupt locks instead.
.. raw:: latex
@@ -528,8 +528,8 @@ DIRECTIVE STATUS CODES:
NONE
DESCRIPTION:
- Interrupts will be disabled. On SMP configurations this directive acquires
- a SMP lock.
+ Interrupts will be disabled. In SMP configurations, this directive
+ acquires an SMP lock.
NOTES:
This directive will not cause the calling thread to be preempted. This
@@ -557,8 +557,8 @@ DIRECTIVE STATUS CODES:
NONE
DESCRIPTION:
- The interrupt status will be restored. On SMP configurations this
- directive releases a SMP lock.
+ The interrupt status will be restored. In SMP configurations, this
+ directive releases an SMP lock.
NOTES:
This directive will not cause the calling thread to be preempted. This
@@ -586,8 +586,8 @@ DIRECTIVE STATUS CODES:
NONE
DESCRIPTION:
- The interrupt status will remain unchanged. On SMP configurations this
- directive acquires a SMP lock.
+ The interrupt status will remain unchanged. In SMP configurations, this
+ directive acquires an SMP lock.
In case the corresponding interrupt service routine can be interrupted by
higher priority interrupts and these interrupts enter the critical section
@@ -620,8 +620,8 @@ DIRECTIVE STATUS CODES:
DESCRIPTION:
- The interrupt status will remain unchanged. On SMP configurations this
- directive releases a SMP lock.
+ The interrupt status will remain unchanged. In SMP configurations, this
+ directive releases an SMP lock.
NOTES:
This directive should be called from the corresponding interrupt service