source: rtems/cpukit/score/src/userextaddset.c @ 2548d14

5
Last change on this file since 2548d14 was db6a637, checked in by Chris Johns <chrisj@…>, on 07/29/16 at 00:29:23

score: Fix for RTEMS_DEBUG.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup ScoreUserExt
5 *
6 * @brief User Extension Handler implementation.
7 */
8
9/*
10 *  COPYRIGHT (c) 1989-2007.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.org/license/LICENSE.
16 */
17
18#if HAVE_CONFIG_H
19#include "config.h"
20#endif
21
22#include <rtems/score/userextimpl.h>
23#include <rtems/score/percpu.h>
24
25void _User_extensions_Add_set(
26  User_extensions_Control *the_extension
27)
28{
29  ISR_lock_Context lock_context;
30
31  _User_extensions_Acquire( &lock_context );
32  _Chain_Initialize_node( &the_extension->Node );
33  _Chain_Append_unprotected(
34    &_User_extensions_List.Active,
35    &the_extension->Node
36  );
37  _User_extensions_Release( &lock_context );
38
39  /*
40   * If a switch handler is present, append it to the switch chain.
41   */
42
43  if ( the_extension->Callouts.thread_switch != NULL ) {
44    ISR_Level level;
45
46    the_extension->Switch.thread_switch =
47      the_extension->Callouts.thread_switch;
48
49    _Per_CPU_Acquire_all( level );
50    _Chain_Initialize_node( &the_extension->Switch.Node );
51    _Chain_Append_unprotected(
52      &_User_extensions_Switches_list,
53      &the_extension->Switch.Node
54    );
55    _Per_CPU_Release_all( level );
56  }
57}
Note: See TracBrowser for help on using the repository browser.