forked from Imagelibrary/rtems
2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
PR 525/rtems * include/rtems/system.h: Use RTEMS_INLINES instead of USE_INLINES. * include/rtems/score/chain.h: Ditto. * include/rtems/score/thread.h: Ditto. * src/chain.c: Ditto. * src/coremutexseize.c: Ditto. * src/threadget.c: Ditto.
This commit is contained in:
@@ -1,3 +1,13 @@
|
||||
2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
PR 525/rtems
|
||||
* include/rtems/system.h: Use RTEMS_INLINES instead of USE_INLINES.
|
||||
* include/rtems/score/chain.h: Ditto.
|
||||
* include/rtems/score/thread.h: Ditto.
|
||||
* src/chain.c: Ditto.
|
||||
* src/coremutexseize.c: Ditto.
|
||||
* src/threadget.c: Ditto.
|
||||
|
||||
2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* Makefile.am: Don't use gmake to preinstall.
|
||||
|
||||
@@ -86,7 +86,7 @@ void _Chain_Initialize(
|
||||
* _Chain_Get_first_unprotected
|
||||
*/
|
||||
|
||||
#ifndef USE_INLINES
|
||||
#ifndef RTEMS_INLINES
|
||||
Chain_Node *_Chain_Get_first_unprotected(
|
||||
Chain_Control *the_chain
|
||||
);
|
||||
|
||||
@@ -741,7 +741,7 @@ boolean _Thread_Evaluate_mode( void );
|
||||
* subroutine call.
|
||||
*/
|
||||
|
||||
#ifndef USE_INLINES
|
||||
#ifndef RTEMS_INLINES
|
||||
Thread_Control *_Thread_Get (
|
||||
Objects_Id id,
|
||||
Objects_Locations *location
|
||||
|
||||
@@ -91,7 +91,7 @@ extern "C" {
|
||||
* type checking with no cost in code size or execution speed.
|
||||
*/
|
||||
|
||||
#ifdef USE_INLINES
|
||||
#ifdef RTEMS_INLINES
|
||||
# ifdef __GNUC__
|
||||
# define RTEMS_INLINE_ROUTINE static __inline__
|
||||
# else
|
||||
|
||||
@@ -67,7 +67,7 @@ void _Chain_Initialize(
|
||||
* _Chain_Get_first_unprotected
|
||||
*/
|
||||
|
||||
#ifndef USE_INLINES
|
||||
#ifndef RTEMS_INLINES
|
||||
Chain_Node *_Chain_Get_first_unprotected(
|
||||
Chain_Control *the_chain
|
||||
)
|
||||
@@ -82,7 +82,7 @@ Chain_Node *_Chain_Get_first_unprotected(
|
||||
|
||||
return return_node;
|
||||
}
|
||||
#endif /* USE_INLINES */
|
||||
#endif /* RTEMS_INLINES */
|
||||
|
||||
/*PAGE
|
||||
*
|
||||
|
||||
@@ -75,7 +75,7 @@ void _CORE_mutex_Seize_interrupt_blocking(
|
||||
_Thread_Enable_dispatch();
|
||||
}
|
||||
|
||||
#if !defined(USE_INLINES)
|
||||
#if !defined(RTEMS_INLINES)
|
||||
int _CORE_mutex_Seize_interrupt_trylock(
|
||||
CORE_mutex_Control *the_mutex,
|
||||
ISR_Level *level_p
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
* NOTE: XXX... This routine may be able to be optimized.
|
||||
*/
|
||||
|
||||
#ifndef USE_INLINES
|
||||
#ifndef RTEMS_INLINES
|
||||
|
||||
Thread_Control *_Thread_Get (
|
||||
Objects_Id id,
|
||||
|
||||
Reference in New Issue
Block a user