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.
This commit is contained in:
Joel Sherrill
2010-07-29 17:51:56 +00:00
parent 53eafcb0d2
commit 4ef13360d6
33 changed files with 143 additions and 22 deletions

View File

@@ -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-27 Sebastian Huber <sebastian.huber@embedded-brains.de>
* rtems/asm.h: Fixed header guard.

View File

@@ -814,7 +814,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.
*

View File

@@ -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 avr_isr;
typedef void ( *avr_isr_entry )( void );

View File

@@ -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-27 Sebastian Huber <sebastian.huber@embedded-brains.de>
* rtems/score/cpu.h: Assembler compatibility fixes.

View File

@@ -951,7 +951,7 @@ void _CPU_Context_Initialize(
* @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

View File

@@ -28,7 +28,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 blackfin_isr;

View File

@@ -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-27 Sebastian Huber <sebastian.huber@embedded-brains.de>
* rtems/score/cpu.h: Assembler compatibility fixes.

View File

@@ -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.
*

View File

@@ -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 );

View File

@@ -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.

View File

@@ -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

View File

@@ -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;

View File

@@ -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.

View File

@@ -912,7 +912,7 @@ void _CPU_Context_Restart_self(
* @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

View File

@@ -32,7 +32,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 m32c_isr;

View File

@@ -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.

View File

@@ -949,7 +949,7 @@ void _CPU_Context_Restart_self(
* @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

View File

@@ -32,7 +32,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 m32r_isr;

View File

@@ -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.

View File

@@ -909,7 +909,7 @@ extern void mips_break( int error );
/*
* 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.
*

View File

@@ -32,7 +32,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 mips_isr;
typedef void ( *mips_isr_entry )( void );

View File

@@ -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.

View File

@@ -1000,7 +1000,7 @@ uint32_t _CPU_ISR_Get_level( void );
* @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

View File

@@ -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 nios2_isr;
typedef void ( *nios2_isr_entry )( void );

View File

@@ -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.

View File

@@ -936,7 +936,7 @@ uint32_t _CPU_ISR_Get_level( void );
* @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

View File

@@ -32,7 +32,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 no_cpu_isr;

View File

@@ -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/new-exceptions/cpu.h: Removed file.

View File

@@ -762,7 +762,7 @@ void _CPU_Context_Initialize(
/*
* 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.
*

View File

@@ -47,7 +47,7 @@ extern "C" {
/*
* This section defines the basic types for this processor.
*/
typedef uint32_t Priority_Bit_map_control;
typedef uint32_t Priority_bit_map_Control;
typedef void ppc_isr;
#ifdef __cplusplus

View File

@@ -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.

View File

@@ -682,7 +682,7 @@ SCORE_EXTERN void _CPU_Context_Initialize(
/*
* 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.
*

View File

@@ -41,7 +41,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 sh_isr;
typedef void ( *sh_isr_entry )( void );