forked from Imagelibrary/rtems
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:
@@ -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>
|
2009-07-16 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||||
|
|
||||||
* spfatal03/spfatal03.scn, spfatal03/testcase.h: Fix spfatal03 to do
|
* spfatal03/spfatal03.scn, spfatal03/testcase.h: Fix spfatal03 to do
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ rtems_task Init(
|
|||||||
Task_name[ 1 ],
|
Task_name[ 1 ],
|
||||||
1,
|
1,
|
||||||
RTEMS_MINIMUM_STACK_SIZE * 2,
|
RTEMS_MINIMUM_STACK_SIZE * 2,
|
||||||
RTEMS_TIMESLICE,
|
RTEMS_PREEMPT|RTEMS_TIMESLICE,
|
||||||
RTEMS_DEFAULT_ATTRIBUTES,
|
RTEMS_DEFAULT_ATTRIBUTES,
|
||||||
&Task_id[ 1 ]
|
&Task_id[ 1 ]
|
||||||
);
|
);
|
||||||
@@ -79,7 +79,7 @@ rtems_task Init(
|
|||||||
Task_name[ 2 ],
|
Task_name[ 2 ],
|
||||||
1,
|
1,
|
||||||
RTEMS_MINIMUM_STACK_SIZE * 2,
|
RTEMS_MINIMUM_STACK_SIZE * 2,
|
||||||
RTEMS_TIMESLICE,
|
RTEMS_PREEMPT|RTEMS_TIMESLICE,
|
||||||
RTEMS_DEFAULT_ATTRIBUTES,
|
RTEMS_DEFAULT_ATTRIBUTES,
|
||||||
&Task_id[ 2 ]
|
&Task_id[ 2 ]
|
||||||
);
|
);
|
||||||
@@ -89,7 +89,7 @@ rtems_task Init(
|
|||||||
Task_name[ 3 ],
|
Task_name[ 3 ],
|
||||||
1,
|
1,
|
||||||
RTEMS_MINIMUM_STACK_SIZE * 2,
|
RTEMS_MINIMUM_STACK_SIZE * 2,
|
||||||
RTEMS_TIMESLICE,
|
RTEMS_PREEMPT|RTEMS_TIMESLICE,
|
||||||
RTEMS_DEFAULT_ATTRIBUTES,
|
RTEMS_DEFAULT_ATTRIBUTES,
|
||||||
&Task_id[ 3 ]
|
&Task_id[ 3 ]
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user