source: rtems/cpukit/include/rtems/score/smp.h

Last change on this file was 7b85efb8, checked in by Joel Sherrill <joel@…>, on 02/16/22 at 21:16:11

cpukit/include/rtems/score/[s-z]*.h: Change license to BSD-2

Updates #3053.

  • Property mode set to 100644
File size: 2.7 KB
RevLine 
[7b85efb8]1/* SPDX-License-Identifier: BSD-2-Clause */
2
[0d5a9f1]3/**
[edde99b]4 * @file
[0d5a9f1]5 *
[4c20da4b]6 * @ingroup RTEMSScoreSMP
[319cb20]7 *
[9278f3d]8 * @brief This header file provides interfaces of the
9 *   @ref RTEMSScoreSMP which are used by the implementation and the
10 *   @ref RTEMSImplApplConfig.
[0d5a9f1]11 */
12
13/*
14 *  COPYRIGHT (c) 1989-2011.
15 *  On-Line Applications Research Corporation (OAR).
16 *
[7b85efb8]17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions
19 * are met:
20 * 1. Redistributions of source code must retain the above copyright
21 *    notice, this list of conditions and the following disclaimer.
22 * 2. Redistributions in binary form must reproduce the above copyright
23 *    notice, this list of conditions and the following disclaimer in the
24 *    documentation and/or other materials provided with the distribution.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
27 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
30 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
[0d5a9f1]37 */
38
39#ifndef _RTEMS_SCORE_SMP_H
40#define _RTEMS_SCORE_SMP_H
41
[edde99b]42#include <rtems/score/cpu.h>
43
44#ifdef __cplusplus
45extern "C" {
46#endif
[0d5a9f1]47
48/**
[4c20da4b]49 * @defgroup RTEMSScoreSMP SMP Support
[edde99b]50 *
[4c20da4b]51 * @ingroup RTEMSScore
[0d5a9f1]52 *
[c81ac0e]53 * @brief This group contains the implementation to support SMP systems.
[d8cd045c]54 *
[edde99b]55 * @{
[0d5a9f1]56 */
57
[567455b6]58/**
59 * @brief The configured processor maximum.
60 *
61 * In SMP configurations, this constant is defined by the application
62 * configuration via <rtems/confdefs.h>, otherwise it is a compile-time
63 * constant with the value one.
64 */
65#if defined(RTEMS_SMP)
66  extern const uint32_t _SMP_Processor_configured_maximum;
67#else
68  #define _SMP_Processor_configured_maximum 1
69#endif
70
[edde99b]71#if defined( RTEMS_SMP )
[cfcd6dc9]72  extern uint32_t _SMP_Processor_maximum;
[edde99b]73
[ad87de4]74  static inline uint32_t _SMP_Get_processor_maximum( void )
[edde99b]75  {
[cfcd6dc9]76    return _SMP_Processor_maximum;
[edde99b]77  }
78#else
[ad87de4]79  #define _SMP_Get_processor_maximum() UINT32_C(1)
[edde99b]80#endif
81
[39e51758]82#if defined( RTEMS_SMP )
[47d60134]83  static inline uint32_t _SMP_Get_current_processor( void )
[39e51758]84  {
85    return _CPU_SMP_Get_current_processor();
86  }
87#else
[2cb95b5f]88  #define _SMP_Get_current_processor() UINT32_C(0)
[39e51758]89#endif
90
[6ca4f6a]91/** @} */
92
[0d5a9f1]93#ifdef __cplusplus
94}
95#endif
96
97#endif
[a15eaaf]98/* end of include file */
Note: See TracBrowser for help on using the repository browser.