source: rtems/cpukit/sapi/src/extension.c @ ef1a985f

5
Last change on this file since ef1a985f was 92bb345, checked in by Sebastian Huber <sebastian.huber@…>, on 12/10/15 at 10:40:26

Optional Extensions initialization

Update #2408.

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/**
2 * @file
3 *
4 * @brief Initialize Extension Manager
5 *
6 * @ingroup ClassicUserExtensions
7 */
8
9/*
10 *  Extension Manager
11 *
12 *  COPYRIGHT (c) 1989-2008.
13 *  On-Line Applications Research Corporation (OAR).
14 *
15 *  The license and distribution terms for this file may be
16 *  found in the file LICENSE in this distribution or at
17 *  http://www.rtems.org/license/LICENSE.
18 */
19
20#if HAVE_CONFIG_H
21#include "config.h"
22#endif
23
24#include <rtems/extensionimpl.h>
25#include <rtems/config.h>
26#include <rtems/sysinit.h>
27
28Objects_Information _Extension_Information;
29
30static void _Extension_Manager_initialization(void)
31{
32  _Objects_Initialize_information(
33    &_Extension_Information,
34    OBJECTS_CLASSIC_API,                 /* object API */
35    OBJECTS_RTEMS_EXTENSIONS,
36    rtems_configuration_get_maximum_extensions(),
37    sizeof( Extension_Control ),
38    false,                     /* true if the name is a string */
39    RTEMS_MAXIMUM_NAME_LENGTH  /* maximum length of an object name */
40#if defined(RTEMS_MULTIPROCESSING)
41    ,
42    false,                     /* true if this is a global object class */
43    NULL                       /* Proxy extraction support callout */
44#endif
45  );
46}
47
48RTEMS_SYSINIT_ITEM(
49  _Extension_Manager_initialization,
50  RTEMS_SYSINIT_USER_EXTENSIONS,
51  RTEMS_SYSINIT_ORDER_MIDDLE
52);
Note: See TracBrowser for help on using the repository browser.