Changeset 7f6a24ab in rtems for c/src/exec/score/inline
- Timestamp:
- 08/28/95 15:30:29 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 5072b07
- Parents:
- 5250ff39
- Location:
- c/src/exec/score/inline
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/inline/object.inl
r5250ff39 r7f6a24ab 73 73 { 74 74 return (id >> OBJECTS_INDEX_START_BIT) & OBJECTS_INDEX_VALID_BITS; 75 } 76 77 /*PAGE 78 * 79 * _Objects_Is_class_valid 80 * 81 */ 82 83 STATIC INLINE boolean _Objects_Is_class_valid( 84 Objects_Classes the_class 85 ) 86 { 87 return the_class <= OBJECTS_CLASSES_LAST; 75 88 } 76 89 -
c/src/exec/score/inline/priority.inl
r5250ff39 r7f6a24ab 42 42 43 43 STATIC INLINE boolean _Priority_Is_valid ( 44 rtems_task_prioritythe_priority44 Priority_Control the_priority 45 45 ) 46 46 { … … 56 56 57 57 STATIC INLINE unsigned32 _Priority_Major ( 58 rtems_task_prioritythe_priority58 Priority_Control the_priority 59 59 ) 60 60 { … … 69 69 70 70 STATIC INLINE unsigned32 _Priority_Minor ( 71 rtems_task_prioritythe_priority71 Priority_Control the_priority 72 72 ) 73 73 { … … 110 110 */ 111 111 112 STATIC INLINE rtems_task_priority_Priority_Get_highest( void )112 STATIC INLINE Priority_Control _Priority_Get_highest( void ) 113 113 { 114 114 Priority_Bit_map_control minor; … … 130 130 STATIC INLINE void _Priority_Initialize_information( 131 131 Priority_Information *the_priority_map, 132 rtems_task_prioritynew_priority132 Priority_Control new_priority 133 133 ) 134 134 { … … 159 159 160 160 STATIC INLINE boolean _Priority_Is_group_empty ( 161 rtems_task_prioritythe_priority161 Priority_Control the_priority 162 162 ) 163 163 { -
c/src/exec/score/inline/rtems/score/object.inl
r5250ff39 r7f6a24ab 73 73 { 74 74 return (id >> OBJECTS_INDEX_START_BIT) & OBJECTS_INDEX_VALID_BITS; 75 } 76 77 /*PAGE 78 * 79 * _Objects_Is_class_valid 80 * 81 */ 82 83 STATIC INLINE boolean _Objects_Is_class_valid( 84 Objects_Classes the_class 85 ) 86 { 87 return the_class <= OBJECTS_CLASSES_LAST; 75 88 } 76 89 -
c/src/exec/score/inline/rtems/score/priority.inl
r5250ff39 r7f6a24ab 42 42 43 43 STATIC INLINE boolean _Priority_Is_valid ( 44 rtems_task_prioritythe_priority44 Priority_Control the_priority 45 45 ) 46 46 { … … 56 56 57 57 STATIC INLINE unsigned32 _Priority_Major ( 58 rtems_task_prioritythe_priority58 Priority_Control the_priority 59 59 ) 60 60 { … … 69 69 70 70 STATIC INLINE unsigned32 _Priority_Minor ( 71 rtems_task_prioritythe_priority71 Priority_Control the_priority 72 72 ) 73 73 { … … 110 110 */ 111 111 112 STATIC INLINE rtems_task_priority_Priority_Get_highest( void )112 STATIC INLINE Priority_Control _Priority_Get_highest( void ) 113 113 { 114 114 Priority_Bit_map_control minor; … … 130 130 STATIC INLINE void _Priority_Initialize_information( 131 131 Priority_Information *the_priority_map, 132 rtems_task_prioritynew_priority132 Priority_Control new_priority 133 133 ) 134 134 { … … 159 159 160 160 STATIC INLINE boolean _Priority_Is_group_empty ( 161 rtems_task_prioritythe_priority161 Priority_Control the_priority 162 162 ) 163 163 { -
c/src/exec/score/inline/rtems/score/tqdata.inl
r5250ff39 r7f6a24ab 25 25 26 26 STATIC INLINE unsigned32 _Thread_queue_Header_number ( 27 rtems_task_prioritythe_priority27 Priority_Control the_priority 28 28 ) 29 29 { … … 38 38 39 39 STATIC INLINE boolean _Thread_queue_Is_reverse_search ( 40 rtems_task_prioritythe_priority40 Priority_Control the_priority 41 41 ) 42 42 { -
c/src/exec/score/inline/rtems/score/userext.inl
r5250ff39 r7f6a24ab 42 42 43 43 STATIC INLINE void _User_extensions_Add_set ( 44 User_extensions_Control 45 rtems_extensions_table *extension_table44 User_extensions_Control *the_extension, 45 rtems_extensions_table *extension_table 46 46 ) 47 47 { -
c/src/exec/score/inline/tqdata.inl
r5250ff39 r7f6a24ab 25 25 26 26 STATIC INLINE unsigned32 _Thread_queue_Header_number ( 27 rtems_task_prioritythe_priority27 Priority_Control the_priority 28 28 ) 29 29 { … … 38 38 39 39 STATIC INLINE boolean _Thread_queue_Is_reverse_search ( 40 rtems_task_prioritythe_priority40 Priority_Control the_priority 41 41 ) 42 42 { -
c/src/exec/score/inline/userext.inl
r5250ff39 r7f6a24ab 42 42 43 43 STATIC INLINE void _User_extensions_Add_set ( 44 User_extensions_Control 45 rtems_extensions_table *extension_table44 User_extensions_Control *the_extension, 45 rtems_extensions_table *extension_table 46 46 ) 47 47 {
Note: See TracChangeset
for help on using the changeset viewer.