summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-07-03 15:13:47 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-07-03 15:13:47 +0000
commit562eab5c4edcc347a08ad7bcf8c3d71a8068ba5f (patch)
treec06a2914cfa1e4a2d67296df1a0875be14e5801b /cpukit/sapi
parent2009-07-01 Sebastian Huber <sebastian.huber@embedded-brains.de> (diff)
downloadrtems-562eab5c4edcc347a08ad7bcf8c3d71a8068ba5f.tar.bz2
2009-07-03 Daniel Hellstrom <daniel@gaisler.com>
* sapi/src/exinit.c, score/include/rtems/score/objectmp.h, score/src/objectmp.c: Ensure local node number is set early enough in MP configurations.
Diffstat (limited to 'cpukit/sapi')
-rw-r--r--cpukit/sapi/src/exinit.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/cpukit/sapi/src/exinit.c b/cpukit/sapi/src/exinit.c
index f6b5fbf13d..41cf37e2ce 100644
--- a/cpukit/sapi/src/exinit.c
+++ b/cpukit/sapi/src/exinit.c
@@ -96,6 +96,10 @@ void rtems_initialize_data_structures(void)
*/
_CPU_Initialize();
+ #if defined(RTEMS_MULTIPROCESSING)
+ _Objects_MP_Handler_early_initialization();
+ #endif
+
/*
* Do this as early as possible to ensure no debugging output
* is even attempted to be printed.