summaryrefslogtreecommitdiffstats
path: root/testsuites/validation/ts-default.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2022-09-26 09:31:29 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2022-10-14 07:29:41 +0200
commit2846b17d7e34f1bdcac579ea1e0fbcb251aff1cb (patch)
tree417358a08e61a123e196a378a29bed07ae9806f8 /testsuites/validation/ts-default.h
parentscore: Require power of two CPU_STACK_MINIMUM_SIZE (diff)
downloadrtems-2846b17d7e34f1bdcac579ea1e0fbcb251aff1cb.tar.bz2
config: Changeable size for IDLE stack allocator
Allow the IDLE stack allocator to change the stack size. This can be used by applications with a very dynamic thread-local storage size to adjust the thread storage area of the IDLE tasks dynamically. Update #4524.
Diffstat (limited to '')
-rw-r--r--testsuites/validation/ts-default.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/validation/ts-default.h b/testsuites/validation/ts-default.h
index 435fccdc51..6e77496b90 100644
--- a/testsuites/validation/ts-default.h
+++ b/testsuites/validation/ts-default.h
@@ -322,9 +322,9 @@ static char test_idle_stacks[ CONFIGURE_MAXIMUM_PROCESSORS ][
RTEMS_ALIGNED( CPU_INTERRUPT_STACK_ALIGNMENT )
RTEMS_SECTION( ".rtemsstack.idle" );
-void *test_idle_task_stack_allocate( uint32_t cpu_index, size_t size )
+void *test_idle_task_stack_allocate( uint32_t cpu_index, size_t *size )
{
- if ( size > sizeof( test_idle_stacks[ 0 ] ) ) {
+ if ( *size > sizeof( test_idle_stacks[ 0 ] ) ) {
rtems_fatal( RTEMS_FATAL_SOURCE_APPLICATION, 0xABAD1DEA );
}