2009-07-19 Joel Sherrill <joel.sherrill@oarcorp.com>

* sp04/init.c: To be timesliced, tasks must also me preemptible.
This commit is contained in:
Joel Sherrill
2009-07-20 01:01:34 +00:00
parent 1e60ba9974
commit ac970794a4
2 changed files with 7 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2009-07-19 Joel Sherrill <joel.sherrill@oarcorp.com>
* sp04/init.c: To be timesliced, tasks must also me preemptible.
2009-07-16 Joel Sherrill <joel.sherrill@oarcorp.com>
* spfatal03/spfatal03.scn, spfatal03/testcase.h: Fix spfatal03 to do

View File

@@ -69,7 +69,7 @@ rtems_task Init(
Task_name[ 1 ],
1,
RTEMS_MINIMUM_STACK_SIZE * 2,
RTEMS_TIMESLICE,
RTEMS_PREEMPT|RTEMS_TIMESLICE,
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ 1 ]
);
@@ -79,7 +79,7 @@ rtems_task Init(
Task_name[ 2 ],
1,
RTEMS_MINIMUM_STACK_SIZE * 2,
RTEMS_TIMESLICE,
RTEMS_PREEMPT|RTEMS_TIMESLICE,
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ 2 ]
);
@@ -89,7 +89,7 @@ rtems_task Init(
Task_name[ 3 ],
1,
RTEMS_MINIMUM_STACK_SIZE * 2,
RTEMS_TIMESLICE,
RTEMS_PREEMPT|RTEMS_TIMESLICE,
RTEMS_DEFAULT_ATTRIBUTES,
&Task_id[ 3 ]
);