sptests/spedfsched02: Reduce stack space usage to fix on smaller targets

This commit is contained in:
Joel Sherrill
2015-03-20 10:49:06 -05:00
parent c6ef8708c3
commit 2fe0f16d13
2 changed files with 1 additions and 3 deletions

View File

@@ -52,7 +52,7 @@ rtems_task Init(
status = rtems_task_create(
Task_name[ index ],
Priorities[ index ],
RTEMS_MINIMUM_STACK_SIZE * 4,
RTEMS_MINIMUM_STACK_SIZE,
RTEMS_DEFAULT_MODES,
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ index ]

View File

@@ -47,8 +47,6 @@ void Get_all_counters( void );
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_EXTRA_TASK_STACKS (6 * 4 * RTEMS_MINIMUM_STACK_SIZE)
#define CONFIGURE_SCHEDULER_EDF
#include <rtems/confdefs.h>