summaryrefslogtreecommitdiffstats
path: root/testsuites
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
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')
-rw-r--r--testsuites/tmtests/ChangeLog4
-rw-r--r--testsuites/tmtests/tm26/task1.c10
-rw-r--r--testsuites/tmtests/tm27/task1.c4
3 files changed, 11 insertions, 7 deletions
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 <sebastian.huber@embedded-brains.de>
+
+ * tm26/task1.c, tm27/task1.c: Update for API changes.
+
2010-11-24 Gedare Bloom <giddyup44@yahoo.com>
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;