forked from Imagelibrary/rtems
2003-08-18 Eiichiro Kawaguchi <e-kawaguchi@ct.jp.nec.com>
PR 458/tests * sp30/task1.c: Correct indexing problem.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2003-08-18 Eiichiro Kawaguchi <e-kawaguchi@ct.jp.nec.com>
|
||||||
|
|
||||||
|
PR 458/tests
|
||||||
|
* sp30/task1.c: Correct indexing problem.
|
||||||
|
|
||||||
2003-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
2003-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||||
|
|
||||||
* configure.ac: Use rtems-bugs@rtems.com as bug report email address.
|
* configure.ac: Use rtems-bugs@rtems.com as bug report email address.
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ rtems_task Task_1_through_3(
|
|||||||
while ( FOREVER ) {
|
while ( FOREVER ) {
|
||||||
status = rtems_timer_server_fire_after(
|
status = rtems_timer_server_fire_after(
|
||||||
Timer_id[ argument ],
|
Timer_id[ argument ],
|
||||||
task_number( tid ) * 5 * TICKS_PER_SECOND,
|
(task_number( tid ) - 1) * 5 * TICKS_PER_SECOND,
|
||||||
Resume_task,
|
Resume_task,
|
||||||
NULL
|
NULL
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user