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:
Joel Sherrill
2003-08-18 15:29:16 +00:00
parent c2eba811f4
commit 7224653a34
2 changed files with 6 additions and 1 deletions

View File

@@ -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>
* configure.ac: Use rtems-bugs@rtems.com as bug report email address.

View File

@@ -34,7 +34,7 @@ rtems_task Task_1_through_3(
while ( FOREVER ) {
status = rtems_timer_server_fire_after(
Timer_id[ argument ],
task_number( tid ) * 5 * TICKS_PER_SECOND,
(task_number( tid ) - 1) * 5 * TICKS_PER_SECOND,
Resume_task,
NULL
);