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:
Ralf Corsepius
2003-11-23 21:45:00 +00:00
parent 6521b630d1
commit 8af72bee23
7 changed files with 17 additions and 7 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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