summaryrefslogtreecommitdiffstats
path: root/spec/req/rtems/tasks/ident.yml
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2020-08-21 16:04:36 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2020-09-16 11:39:08 +0200
commit724df1c5ef711c9399cd8c33b23aee40304d0332 (patch)
tree3f181d1f7e5d88d667532f8f70f45c13486a1ab3 /spec/req/rtems/tasks/ident.yml
parentspec: Specify rtems_task_create_from_config() (diff)
downloadrtems-central-724df1c5ef711c9399cd8c33b23aee40304d0332.tar.bz2
spec: Specify rtems_task_construct()
Previous directive name was rtems_task_create_from_config().
Diffstat (limited to 'spec/req/rtems/tasks/ident.yml')
-rw-r--r--spec/req/rtems/tasks/ident.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/req/rtems/tasks/ident.yml b/spec/req/rtems/tasks/ident.yml
index 43e0d23e..9b4df1d4 100644
--- a/spec/req/rtems/tasks/ident.yml
+++ b/spec/req/rtems/tasks/ident.yml
@@ -84,10 +84,10 @@ test-setup:
static const rtems_task_config task_config = {
.name = ClassicObjectIdentName,
.initial_priority = 1,
- .stack_area = task_storage,
- .stack_size = sizeof( task_storage ),
+ .storage_area = task_storage,
+ .storage_size = sizeof( task_storage ),
.initial_modes = RTEMS_DEFAULT_MODES,
- .attribute_set = RTEMS_DEFAULT_ATTRIBUTES
+ .attributes = RTEMS_DEFAULT_ATTRIBUTES
};
rtems_status_code sc;