summaryrefslogtreecommitdiffstats
path: root/testsuites/tmtests/tm26/task1.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2010-11-25 13:26:45 +0000
committerSebastian Huber <sebastian.huber@embedded-brains.de>2010-11-25 13:26:45 +0000
commitb758b90679088dfbc771aae4cd7d79bd1511c828 (patch)
tree8bfe0a1b5e846e54dae6a072695f0e37d6a10e4f /testsuites/tmtests/tm26/task1.c
parent2010-11-25 Sebastian Huber <sebastian.huber@embedded-brains.de> (diff)
downloadrtems-b758b90679088dfbc771aae4cd7d79bd1511c828.tar.bz2
2010-11-25 Sebastian Huber <sebastian.huber@embedded-brains.de>
* tm26/task1.c, tm27/task1.c: Update for API changes.
Diffstat (limited to 'testsuites/tmtests/tm26/task1.c')
-rw-r--r--testsuites/tmtests/tm26/task1.c10
1 files changed, 5 insertions, 5 deletions
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 );