2009-09-09 Joel Sherrill <joel.sherrill@OARcorp.com>

* sp46/init.c: Make compile on 4.8 branch.
	* sp46/sp46.scn: New file.
This commit is contained in:
Joel Sherrill
2009-09-09 18:27:32 +00:00
parent 0973a00638
commit f8589f08d6
3 changed files with 13 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2009-09-09 Joel Sherrill <joel.sherrill@OARcorp.com>
* sp46/init.c: Make compile on 4.8 branch.
* sp46/sp46.scn: New file.
2009-03-02 Joel Sherrill <joel.sherrill@OARcorp.com> 2009-03-02 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 1388/cpukit PR 1388/cpukit

View File

@@ -36,9 +36,9 @@ rtems_task Periodic_Task(
directive_failed(status, "rate_monotonic_period"); directive_failed(status, "rate_monotonic_period");
partial_loop = 0; partial_loop = 0;
start = rtems_clock_get_ticks_since_boot(); start = _Watchdog_Ticks_since_boot;
end = start + 5; end = start + 5;
while ( end <= rtems_clock_get_ticks_since_boot() ) while ( end <= _Watchdog_Ticks_since_boot )
; ;
partial_loop = 1; partial_loop = 1;
@@ -57,7 +57,7 @@ rtems_task Init(
rtems_status_code status; rtems_status_code status;
rtems_id task_id; rtems_id task_id;
puts( "\n\n*** TEST 45 ***" ); puts( "\n\n*** TEST 46 ***" );
/* /*
* Initialize Tasks * Initialize Tasks

View File

@@ -0,0 +1,5 @@
*** TEST 46 ***
INIT - rtems_task_create - creating task 1
INIT - rtems_task_start - TA1
Periodic - Create Period
*** END OF TEST 46 ***