summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/lm32
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-07-29 17:51:56 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-07-29 17:51:56 +0000
commit4ef13360d61173e2b5cac0cc43c406295ae9adfe (patch)
tree77b29f056ba0c779284082f230902f2aab96eb32 /cpukit/score/cpu/lm32
parent2010-07-29 Joel Sherrill <joel.sherrilL@OARcorp.com> (diff)
downloadrtems-4ef13360d61173e2b5cac0cc43c406295ae9adfe.tar.bz2
2010-07-29 Gedare Bloom <giddyup44@yahoo.com>
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.
Diffstat (limited to 'cpukit/score/cpu/lm32')
-rw-r--r--cpukit/score/cpu/lm32/ChangeLog11
-rw-r--r--cpukit/score/cpu/lm32/rtems/score/cpu.h2
-rw-r--r--cpukit/score/cpu/lm32/rtems/score/types.h2
3 files changed, 13 insertions, 2 deletions
diff --git a/cpukit/score/cpu/lm32/ChangeLog b/cpukit/score/cpu/lm32/ChangeLog
index a490f47e17..3d2fa04e1f 100644
--- a/cpukit/score/cpu/lm32/ChangeLog
+++ b/cpukit/score/cpu/lm32/ChangeLog
@@ -1,3 +1,14 @@
+2010-07-29 Gedare Bloom <giddyup44@yahoo.com>
+
+ 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-16 Sebastian Huber <sebastian.huber@embedded-brains.de>
* rtems/score/cpu.h: Include <rtems/score/types.h> first.
diff --git a/cpukit/score/cpu/lm32/rtems/score/cpu.h b/cpukit/score/cpu/lm32/rtems/score/cpu.h
index a71b1ca4ec..44d31e4efa 100644
--- a/cpukit/score/cpu/lm32/rtems/score/cpu.h
+++ b/cpukit/score/cpu/lm32/rtems/score/cpu.h
@@ -956,7 +956,7 @@ extern char _gp[];
* @ingroup CPUBitfield
* This routine sets @a _output to the bit number of the first bit
* set in @a _value. @a _value is of CPU dependent type
- * @a Priority_Bit_map_control. This type may be either 16 or 32 bits
+ * @a Priority_bit_map_Control. This type may be either 16 or 32 bits
* wide although only the 16 least significant bits will be used.
*
* There are a number of variables in using a "find first bit" type
diff --git a/cpukit/score/cpu/lm32/rtems/score/types.h b/cpukit/score/cpu/lm32/rtems/score/types.h
index bf3297844f..a46dd75220 100644
--- a/cpukit/score/cpu/lm32/rtems/score/types.h
+++ b/cpukit/score/cpu/lm32/rtems/score/types.h
@@ -35,7 +35,7 @@ extern "C" {
*/
/** This defines the type for a priority bit map entry. */
-typedef uint16_t Priority_Bit_map_control;
+typedef uint16_t Priority_bit_map_Control;
/** This defines the return type for an ISR entry point. */
typedef void lm32_isr;