summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/include')
-rw-r--r--cpukit/score/include/rtems/score/chain.h2
-rw-r--r--cpukit/score/include/rtems/score/thread.h2
-rw-r--r--cpukit/score/include/rtems/system.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/include/rtems/score/chain.h b/cpukit/score/include/rtems/score/chain.h
index 84a38b95f9..7f74a692ee 100644
--- a/cpukit/score/include/rtems/score/chain.h
+++ b/cpukit/score/include/rtems/score/chain.h
@@ -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
);
diff --git a/cpukit/score/include/rtems/score/thread.h b/cpukit/score/include/rtems/score/thread.h
index ef4119301c..56b01dc2aa 100644
--- a/cpukit/score/include/rtems/score/thread.h
+++ b/cpukit/score/include/rtems/score/thread.h
@@ -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
diff --git a/cpukit/score/include/rtems/system.h b/cpukit/score/include/rtems/system.h
index 7a9c3c5dfb..b6a8f95253 100644
--- a/cpukit/score/include/rtems/system.h
+++ b/cpukit/score/include/rtems/system.h
@@ -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