source: rtems/cpukit/score/src/userextaddset.c

Last change on this file was 2a1449c, checked in by Joel Sherrill <joel@…>, on 02/16/22 at 21:09:32

score/src/[t-z]*.c: Change license to BSD-2

Updates #3053.

  • Property mode set to 100644
File size: 3.0 KB
Line 
1/* SPDX-License-Identifier: BSD-2-Clause */
2
3/**
4 * @file
5 *
6 * @ingroup RTEMSScoreUserExt
7 *
8 * @brief This source file contains the implementation of
9 *   _User_extensions_Add_set().
10 */
11
12/*
13 *  COPYRIGHT (c) 1989-2007.
14 *  On-Line Applications Research Corporation (OAR).
15 *
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
18 * are met:
19 * 1. Redistributions of source code must retain the above copyright
20 *    notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 *    notice, this list of conditions and the following disclaimer in the
23 *    documentation and/or other materials provided with the distribution.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#ifdef HAVE_CONFIG_H
39#include "config.h"
40#endif
41
42#include <rtems/score/userextimpl.h>
43#include <rtems/score/smp.h>
44#include <rtems/score/percpu.h>
45
46static void _User_extensions_Set_ancestors( void )
47{
48#if defined(RTEMS_SMP)
49  if ( _Chain_Is_empty( &_User_extensions_Switches_list ) ) {
50    uint32_t cpu_max;
51    uint32_t cpu_index;
52
53    cpu_max = _SMP_Get_processor_maximum();
54
55    for ( cpu_index = 0 ; cpu_index < cpu_max ; ++cpu_index ) {
56       Per_CPU_Control *cpu;
57
58       cpu = _Per_CPU_Get_by_index( cpu_index );
59       cpu->ancestor = cpu->executing;
60    }
61  }
62#endif
63}
64
65void _User_extensions_Add_set(
66  User_extensions_Control *the_extension
67)
68{
69  ISR_lock_Context lock_context;
70
71  _User_extensions_Acquire( &lock_context );
72  _Chain_Initialize_node( &the_extension->Node );
73  _Chain_Append_unprotected(
74    &_User_extensions_List.Active,
75    &the_extension->Node
76  );
77  _User_extensions_Release( &lock_context );
78
79  /*
80   * If a switch handler is present, append it to the switch chain.
81   */
82
83  if ( the_extension->Callouts.thread_switch != NULL ) {
84    the_extension->Switch.thread_switch =
85      the_extension->Callouts.thread_switch;
86
87    _Per_CPU_Acquire_all( &lock_context );
88    _User_extensions_Set_ancestors();
89    _Chain_Initialize_node( &the_extension->Switch.Node );
90    _Chain_Append_unprotected(
91      &_User_extensions_Switches_list,
92      &the_extension->Switch.Node
93    );
94    _Per_CPU_Release_all( &lock_context );
95  }
96}
Note: See TracBrowser for help on using the repository browser.