2002-07-01 Joel Sherrill <joel@OARcorp.com>

* sp29/init.c: Corrected definitions for task stack usage.
This commit is contained in:
Joel Sherrill
2002-07-01 22:11:44 +00:00
parent a9047a0f9b
commit 21bbb925a9
4 changed files with 14 additions and 2 deletions

View File

@@ -1,3 +1,7 @@
2002-07-01 Joel Sherrill <joel@OARcorp.com>
* sp29/init.c: Corrected definitions for task stack usage.
2002-07-01 Joel Sherrill <joel@OARcorp.com>
* spsize/size.c: _Thread_queue_Extract_table removed.

View File

@@ -8,6 +8,8 @@
rtems_task Init (rtems_task_argument argument);
#define CONFIGURE_EXTRA_TASK_STACKS RTEMS_MINIMUM_STACK_SIZE
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
@@ -47,7 +49,7 @@ startTask (rtems_id arg)
sc = rtems_task_create (rtems_build_name ('S', 'R', 'V', 'A'),
100,
10000,
RTEMS_MINIMUM_STACK_SIZE * 2,
RTEMS_PREEMPT|RTEMS_NO_TIMESLICE|RTEMS_NO_ASR|RTEMS_INTERRUPT_LEVEL(0),
RTEMS_NO_FLOATING_POINT|RTEMS_LOCAL,
&tid);