forked from Imagelibrary/rtems
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:
@@ -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.
|
||||
|
||||
@@ -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.
|
||||
*
|
||||
|
||||
@@ -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 );
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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.
|
||||
*
|
||||
|
||||
@@ -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 );
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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.
|
||||
*
|
||||
|
||||
@@ -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 );
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 );
|
||||
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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.
|
||||
*
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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.
|
||||
*
|
||||
|
||||
@@ -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 );
|
||||
|
||||
Reference in New Issue
Block a user