forked from Imagelibrary/rtems
changes to compile in macro configuration without warnings.
This commit is contained in:
@@ -83,6 +83,16 @@ void _Chain_Initialize(
|
|||||||
unsigned32 node_size
|
unsigned32 node_size
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* _Chain_Get_first_unprotected
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef USE_INLINES
|
||||||
|
Chain_Node *_Chain_Get_first_unprotected(
|
||||||
|
Chain_Control *the_chain
|
||||||
|
);
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* _Chain_Extract
|
* _Chain_Extract
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -214,9 +214,7 @@ void _ISR_Handler( void );
|
|||||||
|
|
||||||
void _ISR_Dispatch( void );
|
void _ISR_Dispatch( void );
|
||||||
|
|
||||||
#ifndef __RTEMS_APPLICATION__
|
|
||||||
#include <rtems/score/isr.inl>
|
#include <rtems/score/isr.inl>
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -544,6 +544,20 @@ void _Thread_Set_priority(
|
|||||||
|
|
||||||
boolean _Thread_Evaluate_mode( void );
|
boolean _Thread_Evaluate_mode( void );
|
||||||
|
|
||||||
|
/*
|
||||||
|
* _Thread_Get
|
||||||
|
*
|
||||||
|
* NOTE: If we are not using static inlines, this must be a real
|
||||||
|
* subroutine call.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef USE_INLINES
|
||||||
|
Thread_Control *_Thread_Get (
|
||||||
|
Objects_Id id,
|
||||||
|
Objects_Locations *location
|
||||||
|
);
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* _Thread_Idle_body
|
* _Thread_Idle_body
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -83,6 +83,16 @@ void _Chain_Initialize(
|
|||||||
unsigned32 node_size
|
unsigned32 node_size
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* _Chain_Get_first_unprotected
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef USE_INLINES
|
||||||
|
Chain_Node *_Chain_Get_first_unprotected(
|
||||||
|
Chain_Control *the_chain
|
||||||
|
);
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* _Chain_Extract
|
* _Chain_Extract
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -214,9 +214,7 @@ void _ISR_Handler( void );
|
|||||||
|
|
||||||
void _ISR_Dispatch( void );
|
void _ISR_Dispatch( void );
|
||||||
|
|
||||||
#ifndef __RTEMS_APPLICATION__
|
|
||||||
#include <rtems/score/isr.inl>
|
#include <rtems/score/isr.inl>
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -544,6 +544,20 @@ void _Thread_Set_priority(
|
|||||||
|
|
||||||
boolean _Thread_Evaluate_mode( void );
|
boolean _Thread_Evaluate_mode( void );
|
||||||
|
|
||||||
|
/*
|
||||||
|
* _Thread_Get
|
||||||
|
*
|
||||||
|
* NOTE: If we are not using static inlines, this must be a real
|
||||||
|
* subroutine call.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef USE_INLINES
|
||||||
|
Thread_Control *_Thread_Get (
|
||||||
|
Objects_Id id,
|
||||||
|
Objects_Locations *location
|
||||||
|
);
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* _Thread_Idle_body
|
* _Thread_Idle_body
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -83,6 +83,16 @@ void _Chain_Initialize(
|
|||||||
unsigned32 node_size
|
unsigned32 node_size
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* _Chain_Get_first_unprotected
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef USE_INLINES
|
||||||
|
Chain_Node *_Chain_Get_first_unprotected(
|
||||||
|
Chain_Control *the_chain
|
||||||
|
);
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* _Chain_Extract
|
* _Chain_Extract
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -214,9 +214,7 @@ void _ISR_Handler( void );
|
|||||||
|
|
||||||
void _ISR_Dispatch( void );
|
void _ISR_Dispatch( void );
|
||||||
|
|
||||||
#ifndef __RTEMS_APPLICATION__
|
|
||||||
#include <rtems/score/isr.inl>
|
#include <rtems/score/isr.inl>
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -544,6 +544,20 @@ void _Thread_Set_priority(
|
|||||||
|
|
||||||
boolean _Thread_Evaluate_mode( void );
|
boolean _Thread_Evaluate_mode( void );
|
||||||
|
|
||||||
|
/*
|
||||||
|
* _Thread_Get
|
||||||
|
*
|
||||||
|
* NOTE: If we are not using static inlines, this must be a real
|
||||||
|
* subroutine call.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef USE_INLINES
|
||||||
|
Thread_Control *_Thread_Get (
|
||||||
|
Objects_Id id,
|
||||||
|
Objects_Locations *location
|
||||||
|
);
|
||||||
|
#endif
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* _Thread_Idle_body
|
* _Thread_Idle_body
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user