summaryrefslogtreecommitdiffstats
path: root/spec/rtems/message
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2021-09-20 08:07:56 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-09-24 12:02:01 +0200
commit196cf4ba47419e7e06514eeeee8594078497d357 (patch)
tree01a5ee4d1a5fea19a549468f5c2fccaefe137e7e /spec/rtems/message
parentspec: Specify timeout with priority inherit (diff)
downloadrtems-central-196cf4ba47419e7e06514eeeee8594078497d357.tar.bz2
spec: Update due to API changes
Diffstat (limited to 'spec/rtems/message')
-rw-r--r--spec/rtems/message/req/receive.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/rtems/message/req/receive.yml b/spec/rtems/message/req/receive.yml
index b32b9eb7..a2918954 100644
--- a/spec/rtems/message/req/receive.yml
+++ b/spec/rtems/message/req/receive.yml
@@ -273,7 +273,7 @@ pre-conditions:
${../../option/if/no-wait:/name} option.
- name: Timeout
test-code: |
- ctx->tq_ctx.wait = TQ_WAIT_TICKS;
+ ctx->tq_ctx.wait = TQ_WAIT_TIMED;
ctx->option_set_param = RTEMS_WAIT;
ctx->timeout_param = timeout_ticks;
text: |
@@ -768,7 +768,7 @@ test-support: |
option_set = RTEMS_WAIT;
timeout = RTEMS_NO_TIMEOUT;
break;
- case TQ_WAIT_TICKS:
+ case TQ_WAIT_TIMED:
option_set = RTEMS_WAIT;
timeout = UINT32_MAX;
break;