source: rtems/cpukit/score/src/userextthreadcreate.c @ c42d1a4

4.104.115
Last change on this file since c42d1a4 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: 1.1 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.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
27bool _User_extensions_Thread_create (
28  Thread_Control *the_thread
29)
30{
31  Chain_Node              *the_node;
32  User_extensions_Control *the_extension;
33  bool                     status;
34
35  for ( the_node = _User_extensions_List.first ;
36        !_Chain_Is_tail( &_User_extensions_List, the_node ) ;
37        the_node = the_node->next ) {
38
39    the_extension = (User_extensions_Control *) the_node;
40
41    if ( the_extension->Callouts.thread_create != NULL ) {
42      status = (*the_extension->Callouts.thread_create)(
43        _Thread_Executing,
44        the_thread
45      );
46      if ( !status )
47        return false;
48    }
49  }
50
51  return true;
52}
Note: See TracBrowser for help on using the repository browser.