From b758b90679088dfbc771aae4cd7d79bd1511c828 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 25 Nov 2010 13:26:45 +0000 Subject: 2010-11-25 Sebastian Huber * tm26/task1.c, tm27/task1.c: Update for API changes. --- testsuites/tmtests/ChangeLog | 4 ++++ testsuites/tmtests/tm26/task1.c | 10 +++++----- testsuites/tmtests/tm27/task1.c | 4 ++-- 3 files changed, 11 insertions(+), 7 deletions(-) (limited to 'testsuites') diff --git a/testsuites/tmtests/ChangeLog b/testsuites/tmtests/ChangeLog index 8c12a3435d..62f56e45f3 100644 --- a/testsuites/tmtests/ChangeLog +++ b/testsuites/tmtests/ChangeLog @@ -1,3 +1,7 @@ +2010-11-25 Sebastian Huber + + * tm26/task1.c, tm27/task1.c: Update for API changes. + 2010-11-24 Gedare Bloom PR 1647/cpukit diff --git a/testsuites/tmtests/tm26/task1.c b/testsuites/tmtests/tm26/task1.c index 95bfd8f3be..c6054f71f7 100644 --- a/testsuites/tmtests/tm26/task1.c +++ b/testsuites/tmtests/tm26/task1.c @@ -243,7 +243,7 @@ rtems_task Middle_task( _Thread_Executing = (Thread_Control *) - _Chain_First(&_Scheduler.ready_queues.Priority[LOW_PRIORITY]); + _Chain_First(&_Scheduler.Ready_queues.priority[LOW_PRIORITY]); /* do not force context switch */ @@ -281,7 +281,7 @@ rtems_task Low_task( _Thread_Executing = (Thread_Control *) - _Chain_First(&_Scheduler.ready_queues.Priority[FP1_PRIORITY]); + _Chain_First(&_Scheduler.Ready_queues.priority[FP1_PRIORITY]); /* do not force context switch */ @@ -309,7 +309,7 @@ rtems_task Floating_point_task_1( _Thread_Executing = (Thread_Control *) - _Chain_First(&_Scheduler.ready_queues.Priority[FP2_PRIORITY]); + _Chain_First(&_Scheduler.Ready_queues.priority[FP2_PRIORITY]); /* do not force context switch */ @@ -333,7 +333,7 @@ rtems_task Floating_point_task_1( _Thread_Executing = (Thread_Control *) - _Chain_First(&_Scheduler.ready_queues.Priority[FP2_PRIORITY]); + _Chain_First(&_Scheduler.Ready_queues.priority[FP2_PRIORITY]); /* do not force context switch */ @@ -363,7 +363,7 @@ rtems_task Floating_point_task_2( _Thread_Executing = (Thread_Control *) - _Chain_First(&_Scheduler.ready_queues.Priority[FP1_PRIORITY]); + _Chain_First(&_Scheduler.Ready_queues.priority[FP1_PRIORITY]); FP_LOAD( 1.0 ); diff --git a/testsuites/tmtests/tm27/task1.c b/testsuites/tmtests/tm27/task1.c index 0296c84ad7..2f4cdfc2ef 100644 --- a/testsuites/tmtests/tm27/task1.c +++ b/testsuites/tmtests/tm27/task1.c @@ -171,7 +171,7 @@ rtems_task Task_1( _Thread_Dispatch_disable_level = 0; _Thread_Heir = (rtems_tcb *) - _Chain_Last(&_Scheduler.ready_queues.Priority[LOW_PRIORITY]); + _Chain_Last(&_Scheduler.Ready_queues.priority[LOW_PRIORITY]); _Thread_Dispatch_necessary = 1; @@ -229,7 +229,7 @@ rtems_task Task_2( _Thread_Dispatch_disable_level = 0; _Thread_Heir = (rtems_tcb *) - _Chain_First(&_Scheduler.ready_queues.Priority[LOW_PRIORITY]); + _Chain_First(&_Scheduler.Ready_queues.priority[LOW_PRIORITY]); _Thread_Dispatch_necessary = 1; -- cgit v1.2.3