source: rtems/cpukit/score/src/userextaddset.c @ 749d64a

4.104.115
Last change on this file since 749d64a was c42d1a4, checked in by Joel Sherrill <joel.sherrill@…>, on 09/25/09 at 17:51:46

2009-09-25 Sebastian Huber <Sebastian.Huber@…>

  • sapi/include/rtems/extension.h, sapi/src/extensiondelete.c, sapi/src/extensionident.c, sapi/src/extensioncreate.c, sapi/inline/rtems/extension.inl, score/include/rtems/score/userext.h, score/src/userextthreaddelete.c, score/src/userext.c, score/src/userextthreadcreate.c, score/src/userextremoveset.c, score/src/userextthreadbegin.c, score/src/userextaddset.c, score/src/userextthreadstart.c, score/src/userextthreadswitch.c, score/src/userextthreadrestart.c: Documentation. The types User_extensions_routine and rtems_extension are now deprecated. Removed unused types User_extensions_thread_post_switch_extension and rtems_task_post_switch_extension. Renamed _User_extensions_Add_API_set() in _User_extensions_Add_set(). Renamed _User_extensions_Add_set() in _User_extensions_Add_set_with_table().
  • score/src/userextaddapiset.c: Removed file.
  • score/Makefile.am: Update.
  • Property mode set to 100644
File size: 939 bytes
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.com/license/LICENSE.
16 *
17 *  $Id$
18 */
19
20#if HAVE_CONFIG_H
21#include "config.h"
22#endif
23
24#include <rtems/system.h>
25#include <rtems/score/userext.h>
26
27void _User_extensions_Add_set(
28  User_extensions_Control *the_extension
29)
30{
31  _Chain_Append( &_User_extensions_List, &the_extension->Node );
32
33  /*
34   * If a switch handler is present, append it to the switch chain.
35   */
36
37  if ( the_extension->Callouts.thread_switch != NULL ) {
38    the_extension->Switch.thread_switch =
39      the_extension->Callouts.thread_switch;
40    _Chain_Append(
41      &_User_extensions_Switches_list,
42      &the_extension->Switch.Node
43    );
44  }
45}
Note: See TracBrowser for help on using the repository browser.