summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-04-07 07:57:59 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-04-07 08:47:37 +0200
commit5afa8c9fb65ad327863cbaf30cb2d614305b2df3 (patch)
tree5bdbb9661ed754a7d42f8ea109a1ba55e027e0fc
parentspec: Fix rtems_semaphore_release() error (diff)
downloadrtems-central-5afa8c9fb65ad327863cbaf30cb2d614305b2df3.tar.bz2
spec: Fix wording in /rtems/sem/req/release
-rw-r--r--spec/rtems/sem/req/release.yml18
1 files changed, 6 insertions, 12 deletions
diff --git a/spec/rtems/sem/req/release.yml b/spec/rtems/sem/req/release.yml
index cb4b0bea..db8d3db5 100644
--- a/spec/rtems/sem/req/release.yml
+++ b/spec/rtems/sem/req/release.yml
@@ -190,39 +190,33 @@ pre-conditions:
test-code: |
ctx->attribute_set |= RTEMS_COUNTING_SEMAPHORE;
text: |
- While the ${../if/release:/params[0]/name} parameter is associated with
- a counting semaphore.
+ While the semaphore object is a counting semaphore.
- name: Simple
test-code: |
ctx->attribute_set |= RTEMS_SIMPLE_BINARY_SEMAPHORE;
text: |
- While the ${../if/release:/params[0]/name} parameter is associated with
- a simple binary semaphore.
+ While the semaphore object is a simple binary semaphore.
- name: Binary
test-code: |
ctx->attribute_set |= RTEMS_BINARY_SEMAPHORE;
text: |
- While the ${../if/release:/params[0]/name} parameter is associated with
- a binary semaphore.
+ While the semaphore object is a binary semaphore.
- name: PrioCeiling
test-code: |
ctx->attribute_set |= RTEMS_BINARY_SEMAPHORE | RTEMS_PRIORITY_CEILING;
text: |
- While the ${../if/release:/params[0]/name} parameter is associated with
- a priority ceiling semaphore.
+ While the semaphore object is a priority ceiling semaphore.
- name: PrioInherit
test-code: |
ctx->attribute_set |= RTEMS_BINARY_SEMAPHORE | RTEMS_INHERIT_PRIORITY;
text: |
- While the ${../if/release:/params[0]/name} parameter is associated with
- a priority inheritance semaphore.
+ While the semaphore object is a priority inheritance semaphore.
- name: MrsP
test-code: |
ctx->attribute_set |= RTEMS_BINARY_SEMAPHORE |
RTEMS_MULTIPROCESSOR_RESOURCE_SHARING;
text: |
- While the ${../if/release:/params[0]/name} parameter is associated with
- a MrsP semaphore.
+ While the semaphore object is a MrsP semaphore.
test-epilogue: null
test-prologue: null
- name: Discipline