source: rtems/bsps/shared/start/bspsmp-dummy.c @ cb52e37

Last change on this file since cb52e37 was 2584f5b, checked in by Sebastian Huber <sebastian.huber@…>, on 04/19/18 at 04:26:03

bsps: Move bspsmp.c to bsps

This patch is a part of the BSP source reorganization.

Update #3285.

  • Property mode set to 100644
File size: 670 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_Prepare_start_multitasking( void )
30{
31}
32
33void _CPU_SMP_Send_interrupt( uint32_t target_processor_index )
34{
35}
Note: See TracBrowser for help on using the repository browser.