source: rtems/c/src/lib/libbsp/shared/bspsmp.c @ a43a3466

4.115
Last change on this file since a43a3466 was 64a04ac, checked in by Sebastian Huber <sebastian.huber@…>, on 05/12/14 at 06:53:11

bsps: Use standard file name for BSP support

  • Property mode set to 100644
File size: 616 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( void )
15{
16  /* return the number of CPUs */
17  return 1;
18}
19
20bool _CPU_SMP_Start_processor( uint32_t cpu_index )
21{
22  return true;
23}
24
25void _CPU_SMP_Finalize_initialization( uint32_t cpu_count )
26{
27}
28
29void _CPU_SMP_Send_interrupt( uint32_t target_processor_index )
30{
31}
Note: See TracBrowser for help on using the repository browser.