Changeset b0a2a7aa in rtems
- Timestamp:
- 10/04/11 15:18:16 (11 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 1072d53d
- Parents:
- 4b5348cc
- Location:
- testsuites/sptests
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
testsuites/sptests/ChangeLog
r4b5348cc rb0a2a7aa 1 2011-10-04 Sebastian Huber <sebastian.huber@embedded-brains.de> 2 3 PR 1922 4 * spcbssched02/system.h, spcbssched03/system.h, spedfsched02/system.h, 5 spedfsched02/task1.c, spedfsched03/system.h: EDF and CBS scheduler: 6 extern declarations fix. 7 1 8 2011-09-30 Ralf Corsépius <ralf.corsepius@rtems.org> 2 9 -
testsuites/sptests/spcbssched02/system.h
r4b5348cc rb0a2a7aa 53 53 /* global variables */ 54 54 55 rtems_id Task_id;56 rtems_name Task_name;57 rtems_id Task_id2;58 rtems_name Task_name2;59 rtems_task_priority Priority;60 time_t Period;61 time_t Execution;62 time_t Phase;55 TEST_EXTERN rtems_id Task_id; 56 TEST_EXTERN rtems_name Task_name; 57 TEST_EXTERN rtems_id Task_id2; 58 TEST_EXTERN rtems_name Task_name2; 59 TEST_EXTERN rtems_task_priority Priority; 60 TEST_EXTERN time_t Period; 61 TEST_EXTERN time_t Execution; 62 TEST_EXTERN time_t Phase; 63 63 64 64 /* end of include file */ -
testsuites/sptests/spcbssched03/system.h
r4b5348cc rb0a2a7aa 65 65 TEST_EXTERN rtems_id Task_id[ 1+NUM_TASKS ]; /* array of task ids */ 66 66 TEST_EXTERN rtems_name Task_name[ 1+NUM_TASKS ]; /* array of task names */ 67 externrtems_task_priority Priorities[ 1+NUM_TASKS ];68 externuint32_t Periods[ 1 + NUM_PERIODIC_TASKS ];69 externuint32_t Phases[1 + NUM_TASKS];70 externuint32_t Execution[1 + NUM_TASKS];71 bool Violating_task[1 + NUM_PERIODIC_TASKS];67 TEST_EXTERN rtems_task_priority Priorities[ 1+NUM_TASKS ]; 68 TEST_EXTERN uint32_t Periods[ 1 + NUM_PERIODIC_TASKS ]; 69 TEST_EXTERN uint32_t Phases[1 + NUM_TASKS]; 70 TEST_EXTERN uint32_t Execution[1 + NUM_TASKS]; 71 TEST_EXTERN bool Violating_task[1 + NUM_PERIODIC_TASKS]; 72 72 73 73 /* end of include file */ -
testsuites/sptests/spedfsched02/system.h
r4b5348cc rb0a2a7aa 61 61 TEST_EXTERN struct counters Count; /* iteration counters */ 62 62 TEST_EXTERN struct counters Temporary_count; 63 extern rtems_task_priority Priorities[ 7 ];63 TEST_EXTERN rtems_task_priority *Priorities; 64 64 65 65 /* end of include file */ -
testsuites/sptests/spedfsched02/task1.c
r4b5348cc rb0a2a7aa 32 32 uint32_t Periods[7] = { 0, 2, 2, 2, 2, 100, 0 }; 33 33 uint32_t Iterations[7] = { 0, 50, 50, 50, 50, 1, TA6_ITERATIONS }; 34 rtems_task_priority Prio rities[7] = { 0, 2, 2, 2, 2, 100, 1 };34 rtems_task_priority Prio[7] = { 0, 2, 2, 2, 2, 100, 1 }; 35 35 36 36 rtems_task Task_1_through_6( … … 44 44 uint32_t failed; 45 45 rtems_status_code status; 46 47 Priorities = Prio; 46 48 47 49 status = rtems_rate_monotonic_create( argument, &rmid ); -
testsuites/sptests/spedfsched03/system.h
r4b5348cc rb0a2a7aa 64 64 TEST_EXTERN rtems_id Task_id[ 1+NUM_TASKS ]; /* array of task ids */ 65 65 TEST_EXTERN rtems_name Task_name[ 1+NUM_TASKS ]; /* array of task names */ 66 externrtems_task_priority Priorities[ 1+NUM_TASKS ];67 externuint32_t Periods[ 1 + NUM_PERIODIC_TASKS ];68 externuint32_t Phases[1 + NUM_TASKS];69 externuint32_t Execution[1 + NUM_TASKS];66 TEST_EXTERN rtems_task_priority Priorities[ 1+NUM_TASKS ]; 67 TEST_EXTERN uint32_t Periods[ 1 + NUM_PERIODIC_TASKS ]; 68 TEST_EXTERN uint32_t Phases[1 + NUM_TASKS]; 69 TEST_EXTERN uint32_t Execution[1 + NUM_TASKS]; 70 70 71 71 /* end of include file */
Note: See TracChangeset
for help on using the changeset viewer.