From 4ef13360d61173e2b5cac0cc43c406295ae9adfe Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 29 Jul 2010 17:51:56 +0000 Subject: 2010-07-29 Gedare Bloom PR 1635/cpukit * rtems/score/cpu.h, rtems/score/types.h: Refactoring of priority handling, to isolate the bitmap implementation of priorities in the supercore so that priority management is a little more modular. This change is in anticipation of scheduler implementations that can select how they manage tracking priority levels / finding the highest priority ready task. Note that most of the changes here are simple renaming, to clarify the use of the bitmap-based priority management. --- cpukit/score/cpu/h8300/ChangeLog | 11 +++++++++++ cpukit/score/cpu/h8300/rtems/score/cpu.h | 2 +- cpukit/score/cpu/h8300/rtems/score/types.h | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) (limited to 'cpukit/score/cpu/h8300') diff --git a/cpukit/score/cpu/h8300/ChangeLog b/cpukit/score/cpu/h8300/ChangeLog index 3dff99e349..aba5af5bf4 100644 --- a/cpukit/score/cpu/h8300/ChangeLog +++ b/cpukit/score/cpu/h8300/ChangeLog @@ -1,3 +1,14 @@ +2010-07-29 Gedare Bloom + + PR 1635/cpukit + * rtems/score/cpu.h, rtems/score/types.h: Refactoring of priority + handling, to isolate the bitmap implementation of priorities in the + supercore so that priority management is a little more modular. This + change is in anticipation of scheduler implementations that can + select how they manage tracking priority levels / finding the highest + priority ready task. Note that most of the changes here are simple + renaming, to clarify the use of the bitmap-based priority management. + 2010-07-27 Sebastian Huber * rtems/score/cpu.h: Assembler compatibility fixes. diff --git a/cpukit/score/cpu/h8300/rtems/score/cpu.h b/cpukit/score/cpu/h8300/rtems/score/cpu.h index 75a73587d2..82f3e40355 100644 --- a/cpukit/score/cpu/h8300/rtems/score/cpu.h +++ b/cpukit/score/cpu/h8300/rtems/score/cpu.h @@ -844,7 +844,7 @@ uint32_t _CPU_ISR_Get_level( void ); /* * This routine sets _output to the bit number of the first bit - * set in _value. _value is of CPU dependent type Priority_Bit_map_control. + * set in _value. _value is of CPU dependent type Priority_bit_map_Control. * This type may be either 16 or 32 bits wide although only the 16 * least significant bits will be used. * diff --git a/cpukit/score/cpu/h8300/rtems/score/types.h b/cpukit/score/cpu/h8300/rtems/score/types.h index 20bcf72543..e073ffb312 100644 --- a/cpukit/score/cpu/h8300/rtems/score/types.h +++ b/cpukit/score/cpu/h8300/rtems/score/types.h @@ -31,7 +31,7 @@ extern "C" { * This section defines the basic types for this processor. */ -typedef uint16_t Priority_Bit_map_control; +typedef uint16_t Priority_bit_map_Control; typedef void h8300_isr; typedef void ( *h8300_isr_entry )( void ); -- cgit v1.2.3