Changeset fabacfe in rtems
- Timestamp:
- 03/20/02 14:56:45 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- eaeb467
- Parents:
- ab09d083
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/sptests/ChangeLog
rab09d083 rfabacfe 1 2002-03-20 Chris Johns <ccj@acm.org> 2 3 * PR145. 4 * sp04/task1.c, sp04/tswitch.c: Test fails if other tasks present 5 in system (e.g. driver tasks). Also exit on minimum number of 6 switches not precise number. 7 1 8 2001-01-29 Joel Sherrill <joel@OARcorp.com> 2 9 -
c/src/tests/sptests/sp04/task1.c
rab09d083 rfabacfe 75 75 76 76 while ( FOREVER ) { 77 if ( Run_count[ 1 ] == 3 ) {77 if ( Run_count[ 1 ] >= 3 ) { 78 78 puts( "TA1 - rtems_task_mode - change mode to NO RTEMS_PREEMPT" ); 79 79 -
c/src/tests/sptests/sp04/tswitch.c
rab09d083 rfabacfe 36 36 rtems_status_code status; 37 37 38 index = task_number( heir->Object.id ) ;38 index = task_number( heir->Object.id ) - task_number( Task_id[1] ) + 1; 39 39 40 40 switch( index ) { -
testsuites/sptests/ChangeLog
rab09d083 rfabacfe 1 2002-03-20 Chris Johns <ccj@acm.org> 2 3 * PR145. 4 * sp04/task1.c, sp04/tswitch.c: Test fails if other tasks present 5 in system (e.g. driver tasks). Also exit on minimum number of 6 switches not precise number. 7 1 8 2001-01-29 Joel Sherrill <joel@OARcorp.com> 2 9 -
testsuites/sptests/sp04/task1.c
rab09d083 rfabacfe 75 75 76 76 while ( FOREVER ) { 77 if ( Run_count[ 1 ] == 3 ) {77 if ( Run_count[ 1 ] >= 3 ) { 78 78 puts( "TA1 - rtems_task_mode - change mode to NO RTEMS_PREEMPT" ); 79 79 -
testsuites/sptests/sp04/tswitch.c
rab09d083 rfabacfe 36 36 rtems_status_code status; 37 37 38 index = task_number( heir->Object.id ) ;38 index = task_number( heir->Object.id ) - task_number( Task_id[1] ) + 1; 39 39 40 40 switch( index ) {
Note: See TracChangeset
for help on using the changeset viewer.