summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/mpci.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-02-03 12:41:02 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-02-17 09:15:01 +0100
commit358bd740593132ddb00d6e33b4f512b5f9615597 (patch)
tree480e1259d433ef74df494e5d4b1a4481f0b1662e /cpukit/score/src/mpci.c
parentsparc64: Avoid SCORE_EXTERN (diff)
downloadrtems-358bd740593132ddb00d6e33b4f512b5f9615597.tar.bz2
score: Avoid SCORE_EXTERN
Delete SCORE_INIT. This finally removes the some.h: #ifndef SOME_XYZ_EXTERN #define SOME_XYZ_EXTERN extern #endif SOME_XYZ_EXTERN type xyz; some_xyz.c: #define SOME_XYZ_EXTERN #include <some.h> pattern in favour of some.h: extern type xyz; some_xyz.c #include <some.h> type xyz; Update #2559.
Diffstat (limited to 'cpukit/score/src/mpci.c')
-rw-r--r--cpukit/score/src/mpci.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/cpukit/score/src/mpci.c b/cpukit/score/src/mpci.c
index 051366d4a8..c191bbe472 100644
--- a/cpukit/score/src/mpci.c
+++ b/cpukit/score/src/mpci.c
@@ -35,6 +35,8 @@ RTEMS_STATIC_ASSERT(
MPCI_Internal_packet
);
+bool _System_state_Is_multiprocessing;
+
rtems_multiprocessing_table *_Configuration_MP_table;
const rtems_multiprocessing_table
@@ -52,6 +54,14 @@ const rtems_multiprocessing_table
*/
CORE_semaphore_Control _MPCI_Semaphore;
+Thread_queue_Control _MPCI_Remote_blocked_threads;
+
+MPCI_Control *_MPCI_table;
+
+Thread_Control *_MPCI_Receive_server_tcb;
+
+MPCI_Packet_processor _MPCI_Packet_processors[ MP_PACKET_CLASSES_LAST + 1 ];
+
static void _MPCI_Handler_early_initialization( void )
{
/*