source: rtems/c/src/lib/libbsp/shared/smp/smp_stub.c @ 198c1433

4.115
Last change on this file since 198c1433 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 504 bytes
Line 
1/*
2 *  RTEMS SMP Support for Single Core
3 *
4 *  COPYRIGHT (c) 1989-2011.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.rtems.org/license/LICENSE.
10 */
11
12#include <rtems/score/cpu.h>
13
14uint32_t _CPU_SMP_Initialize( uint32_t configured_cpu_count )
15{
16  /* return the number of CPUs */
17  return 1;
18}
19
20void _CPU_SMP_Send_interrupt( uint32_t target_processor_index )
21{
22}
Note: See TracBrowser for help on using the repository browser.