source: rtems/cpukit/score/src/userextremoveset.c @ c86da31c

4.115
Last change on this file since c86da31c was 28352fae, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/29/09 at 13:51:53

Whitespace removal.

  • Property mode set to 100644
File size: 760 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_Remove_set (
28  User_extensions_Control  *the_extension
29)
30{
31  _Chain_Extract( &the_extension->Node );
32
33  /*
34   * If a switch handler is present, remove it.
35   */
36
37  if ( the_extension->Callouts.thread_switch != NULL )
38    _Chain_Extract( &the_extension->Switch.Node );
39}
Note: See TracBrowser for help on using the repository browser.