summaryrefslogtreecommitdiffstats
path: root/spec/req/rtems/event/send-receive.yml
diff options
context:
space:
mode:
Diffstat (limited to 'spec/req/rtems/event/send-receive.yml')
-rw-r--r--spec/req/rtems/event/send-receive.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/req/rtems/event/send-receive.yml b/spec/req/rtems/event/send-receive.yml
index 9465a7aa..5723e57e 100644
--- a/spec/req/rtems/event/send-receive.yml
+++ b/spec/req/rtems/event/send-receive.yml
@@ -461,14 +461,14 @@ test-prepare: |
test-setup:
brief: null
code: |
- static char task_stack[ RTEMS_MINIMUM_STACK_SIZE ];
+ static char task_storage[ RTEMS_MINIMUM_STACK_SIZE ];
static const rtems_task_config task_config = {
.name = rtems_build_name( 'W', 'O', 'R', 'K' ),
.initial_priority = PRIO_LOW,
- .stack_area = task_stack,
- .stack_size = sizeof( task_stack ),
+ .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;