From d906ce30c6a6b2e266b2d9c424f6b3a081b763d7 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Mon, 30 Jul 2018 07:51:39 +0200 Subject: libtests: Use CONFIGURE_INIT_TASK_TABLE_SIZE Using CONFIGURE_MINIMUM_TASK_STACK_SIZE increases also the interrupt stack size. This is an issue on some BSPs. Use CONFIGURE_INIT_TASK_TABLE_SIZE instead. Update #3433. --- testsuites/libtests/dl05/init.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'testsuites/libtests/dl05') diff --git a/testsuites/libtests/dl05/init.c b/testsuites/libtests/dl05/init.c index 028aae6039..dd2150d2a6 100644 --- a/testsuites/libtests/dl05/init.c +++ b/testsuites/libtests/dl05/init.c @@ -69,10 +69,6 @@ static void Init(rtems_task_argument arg) #define CONFIGURE_MAXIMUM_TASKS 1 -#define CONFIGURE_MINIMUM_TASK_STACK_SIZE (32U * 1024U) - -#define CONFIGURE_EXTRA_TASK_STACKS (64 * 1024) - #define CONFIGURE_MAXIMUM_POSIX_KEYS 2 #define CONFIGURE_MAXIMUM_SEMAPHORES 1 @@ -81,6 +77,8 @@ static void Init(rtems_task_argument arg) #define CONFIGURE_RTEMS_INIT_TASKS_TABLE +#define CONFIGURE_INIT_TASK_STACK_SIZE (32U * 1024U) + #define CONFIGURE_INIT_TASK_ATTRIBUTES RTEMS_FLOATING_POINT #define CONFIGURE_INIT -- cgit v1.2.3