summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-11-23 21:45:00 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-11-23 21:45:00 +0000
commit8af72bee23fe0d9a100d7cd71ca8ec25288fda02 (patch)
tree6cd239f4e2a9422f3cca9a0814ec02ec506f6bd2 /cpukit/score/src
parent2003-11-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-8af72bee23fe0d9a100d7cd71ca8ec25288fda02.tar.bz2
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.
Diffstat (limited to 'cpukit/score/src')
-rw-r--r--cpukit/score/src/chain.c4
-rw-r--r--cpukit/score/src/coremutexseize.c2
-rw-r--r--cpukit/score/src/threadget.c2
3 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/score/src/chain.c b/cpukit/score/src/chain.c
index 8b8531dbf5..a7361319f0 100644
--- a/cpukit/score/src/chain.c
+++ b/cpukit/score/src/chain.c
@@ -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
*
diff --git a/cpukit/score/src/coremutexseize.c b/cpukit/score/src/coremutexseize.c
index b106155874..c6b711355f 100644
--- a/cpukit/score/src/coremutexseize.c
+++ b/cpukit/score/src/coremutexseize.c
@@ -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
diff --git a/cpukit/score/src/threadget.c b/cpukit/score/src/threadget.c
index 528ca2d1cd..97b31afdde 100644
--- a/cpukit/score/src/threadget.c
+++ b/cpukit/score/src/threadget.c
@@ -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,