summaryrefslogtreecommitdiffstats
path: root/testsuites/tmtests/tm27/task1.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2011-02-18 15:12:55 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2011-02-18 15:12:55 +0000
commitdf0f27f655ad376e8e6e2205af8735a4308d8092 (patch)
tree63879ade1d0086193f5fb8cc2328fcbf5e4fb13c /testsuites/tmtests/tm27/task1.c
parent2011-02-18 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-df0f27f655ad376e8e6e2205af8735a4308d8092.tar.bz2
2011-02-18 Joel Sherrill <joel.sherrill@oarcorp.com>
* tm26/task1.c, tm27/task1.c: Adjust for name changes.
Diffstat (limited to 'testsuites/tmtests/tm27/task1.c')
-rw-r--r--testsuites/tmtests/tm27/task1.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/testsuites/tmtests/tm27/task1.c b/testsuites/tmtests/tm27/task1.c
index 2f4cdfc2ef..150c4c5e08 100644
--- a/testsuites/tmtests/tm27/task1.c
+++ b/testsuites/tmtests/tm27/task1.c
@@ -1,5 +1,5 @@
/*
- * COPYRIGHT (c) 1989-2009.
+ * COPYRIGHT (c) 1989-2011.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -91,6 +91,8 @@ rtems_task Task_1(
rtems_task_argument argument
)
{
+ Chain_Control *ready_queues;
+
Install_tm27_vector( Isr_handler );
/*
@@ -170,8 +172,9 @@ rtems_task Task_1(
_Thread_Dispatch_disable_level = 0;
- _Thread_Heir = (rtems_tcb *)
- _Chain_Last(&_Scheduler.Ready_queues.priority[LOW_PRIORITY]);
+ ready_queues = (Chain_Control *) _Scheduler.information;
+ _Thread_Executing =
+ (Thread_Control *) _Chain_First(&ready_queues[LOW_PRIORITY]);
_Thread_Dispatch_necessary = 1;
@@ -199,6 +202,8 @@ rtems_task Task_2(
rtems_task_argument argument
)
{
+ Chain_Control *ready_queues;
+
#if (MUST_WAIT_FOR_INTERRUPT == 1)
while ( Interrupt_occurred == 0 );
#endif
@@ -228,8 +233,9 @@ rtems_task Task_2(
_Thread_Dispatch_disable_level = 0;
- _Thread_Heir = (rtems_tcb *)
- _Chain_First(&_Scheduler.Ready_queues.priority[LOW_PRIORITY]);
+ ready_queues = (Chain_Control *) _Scheduler.information;
+ _Thread_Executing =
+ (Thread_Control *) _Chain_First(&ready_queues[LOW_PRIORITY]);
_Thread_Dispatch_necessary = 1;