summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-04-19 19:36:59 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-04-19 19:36:59 +0000
commitf4d52cd74c915219a892e3d4668b3a55857f749f (patch)
tree42514756c7324ce68f888b63675a2f935d0e2422
parentminor mods to get to compile locally (diff)
downloadrtems-f4d52cd74c915219a892e3d4668b3a55857f749f.tar.bz2
changes to compile in macro configuration without warnings.
-rw-r--r--c/src/exec/score/headers/chain.h10
-rw-r--r--c/src/exec/score/headers/isr.h2
-rw-r--r--c/src/exec/score/headers/thread.h14
-rw-r--r--c/src/exec/score/include/rtems/score/chain.h10
-rw-r--r--c/src/exec/score/include/rtems/score/isr.h2
-rw-r--r--c/src/exec/score/include/rtems/score/thread.h14
-rw-r--r--cpukit/score/include/rtems/score/chain.h10
-rw-r--r--cpukit/score/include/rtems/score/isr.h2
-rw-r--r--cpukit/score/include/rtems/score/thread.h14
9 files changed, 72 insertions, 6 deletions
diff --git a/c/src/exec/score/headers/chain.h b/c/src/exec/score/headers/chain.h
index 6eed361e88..11c1f8aee0 100644
--- a/c/src/exec/score/headers/chain.h
+++ b/c/src/exec/score/headers/chain.h
@@ -84,6 +84,16 @@ void _Chain_Initialize(
);
/*
+ * _Chain_Get_first_unprotected
+ */
+
+#ifndef USE_INLINES
+Chain_Node *_Chain_Get_first_unprotected(
+ Chain_Control *the_chain
+);
+#endif
+
+/*
* _Chain_Extract
*
* DESCRIPTION:
diff --git a/c/src/exec/score/headers/isr.h b/c/src/exec/score/headers/isr.h
index e42d7b888e..cf8f4cad59 100644
--- a/c/src/exec/score/headers/isr.h
+++ b/c/src/exec/score/headers/isr.h
@@ -214,9 +214,7 @@ void _ISR_Handler( void );
void _ISR_Dispatch( void );
-#ifndef __RTEMS_APPLICATION__
#include <rtems/score/isr.inl>
-#endif
#ifdef __cplusplus
}
diff --git a/c/src/exec/score/headers/thread.h b/c/src/exec/score/headers/thread.h
index 8abf7c3584..74399545b9 100644
--- a/c/src/exec/score/headers/thread.h
+++ b/c/src/exec/score/headers/thread.h
@@ -545,6 +545,20 @@ void _Thread_Set_priority(
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
*
* DESCRIPTION:
diff --git a/c/src/exec/score/include/rtems/score/chain.h b/c/src/exec/score/include/rtems/score/chain.h
index 6eed361e88..11c1f8aee0 100644
--- a/c/src/exec/score/include/rtems/score/chain.h
+++ b/c/src/exec/score/include/rtems/score/chain.h
@@ -84,6 +84,16 @@ void _Chain_Initialize(
);
/*
+ * _Chain_Get_first_unprotected
+ */
+
+#ifndef USE_INLINES
+Chain_Node *_Chain_Get_first_unprotected(
+ Chain_Control *the_chain
+);
+#endif
+
+/*
* _Chain_Extract
*
* DESCRIPTION:
diff --git a/c/src/exec/score/include/rtems/score/isr.h b/c/src/exec/score/include/rtems/score/isr.h
index e42d7b888e..cf8f4cad59 100644
--- a/c/src/exec/score/include/rtems/score/isr.h
+++ b/c/src/exec/score/include/rtems/score/isr.h
@@ -214,9 +214,7 @@ void _ISR_Handler( void );
void _ISR_Dispatch( void );
-#ifndef __RTEMS_APPLICATION__
#include <rtems/score/isr.inl>
-#endif
#ifdef __cplusplus
}
diff --git a/c/src/exec/score/include/rtems/score/thread.h b/c/src/exec/score/include/rtems/score/thread.h
index 8abf7c3584..74399545b9 100644
--- a/c/src/exec/score/include/rtems/score/thread.h
+++ b/c/src/exec/score/include/rtems/score/thread.h
@@ -545,6 +545,20 @@ void _Thread_Set_priority(
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
*
* DESCRIPTION:
diff --git a/cpukit/score/include/rtems/score/chain.h b/cpukit/score/include/rtems/score/chain.h
index 6eed361e88..11c1f8aee0 100644
--- a/cpukit/score/include/rtems/score/chain.h
+++ b/cpukit/score/include/rtems/score/chain.h
@@ -84,6 +84,16 @@ void _Chain_Initialize(
);
/*
+ * _Chain_Get_first_unprotected
+ */
+
+#ifndef USE_INLINES
+Chain_Node *_Chain_Get_first_unprotected(
+ Chain_Control *the_chain
+);
+#endif
+
+/*
* _Chain_Extract
*
* DESCRIPTION:
diff --git a/cpukit/score/include/rtems/score/isr.h b/cpukit/score/include/rtems/score/isr.h
index e42d7b888e..cf8f4cad59 100644
--- a/cpukit/score/include/rtems/score/isr.h
+++ b/cpukit/score/include/rtems/score/isr.h
@@ -214,9 +214,7 @@ void _ISR_Handler( void );
void _ISR_Dispatch( void );
-#ifndef __RTEMS_APPLICATION__
#include <rtems/score/isr.inl>
-#endif
#ifdef __cplusplus
}
diff --git a/cpukit/score/include/rtems/score/thread.h b/cpukit/score/include/rtems/score/thread.h
index 8abf7c3584..74399545b9 100644
--- a/cpukit/score/include/rtems/score/thread.h
+++ b/cpukit/score/include/rtems/score/thread.h
@@ -545,6 +545,20 @@ void _Thread_Set_priority(
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
*
* DESCRIPTION: