summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/lib/libbsp/shared/ChangeLog5
-rw-r--r--c/src/lib/libbsp/shared/smp/getcpuid.c16
-rw-r--r--c/src/lib/libbsp/shared/smp/smp_stub.c50
3 files changed, 71 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/shared/ChangeLog b/c/src/lib/libbsp/shared/ChangeLog
index c76d55ca99..b431d6231e 100644
--- a/c/src/lib/libbsp/shared/ChangeLog
+++ b/c/src/lib/libbsp/shared/ChangeLog
@@ -1,3 +1,8 @@
+2011-03-16 Jennifer Averett <jennifer.averett@OARcorp.com>
+
+ PR 1729/cpukit
+ * smp/getcpuid.c, smp/smp_stub.c: New files.
+
2011-02-28 Sebastian Huber <sebastian.huber@embedded-brains.de>
* console.c: Register also normal device file of the console device.
diff --git a/c/src/lib/libbsp/shared/smp/getcpuid.c b/c/src/lib/libbsp/shared/smp/getcpuid.c
new file mode 100644
index 0000000000..6eb65b9ef6
--- /dev/null
+++ b/c/src/lib/libbsp/shared/smp/getcpuid.c
@@ -0,0 +1,16 @@
+/*
+ * COPYRIGHT (c) 1989-2011.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+int bsp_smp_processor_id(void)
+{
+ return 0;
+}
+
diff --git a/c/src/lib/libbsp/shared/smp/smp_stub.c b/c/src/lib/libbsp/shared/smp/smp_stub.c
new file mode 100644
index 0000000000..653e4e037a
--- /dev/null
+++ b/c/src/lib/libbsp/shared/smp/smp_stub.c
@@ -0,0 +1,50 @@
+/*
+ * RTEMS SMP Support for Single Core
+ *
+ * COPYRIGHT (c) 1989-2011.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+#include <rtems.h>
+#include <bsp.h>
+#include <rtems/bspIo.h>
+#include <rtems/bspsmp.h>
+#include <stdlib.h>
+
+void bsp_smp_secondary_cpu_initialize(int cpu)
+{
+}
+
+int bsp_smp_initialize(
+ int maximum
+)
+{
+ /* return the number of CPUs */
+ return 1;
+}
+
+void bsp_smp_broadcast_interrupt(void)
+{
+}
+
+void bsp_smp_broadcast_message(
+ uint32_t message
+)
+{
+}
+
+void bsp_smp_interrupt_cpu(
+ int cpu
+)
+{
+}
+
+void bsp_smp_delay( int max )
+{
+}