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

5
Last change on this file since f05eeb2 was f05eeb2, checked in by Sebastian Huber <sebastian.huber@…>, on 04/19/16 at 11:39:00

score: Simplify _Objects_Initialize_information()

Remove unused supports_global parameter. Convert
_Objects_Initialize_information() to a macro to avoid use of
RTEMS_MULTIPROCESSING define for each caller.

  • Property mode set to 100644
File size: 1.1 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    NULL                       /* Proxy extraction support callout */
41  );
42}
43
44RTEMS_SYSINIT_ITEM(
45  _Extension_Manager_initialization,
46  RTEMS_SYSINIT_USER_EXTENSIONS,
47  RTEMS_SYSINIT_ORDER_MIDDLE
48);
Note: See TracBrowser for help on using the repository browser.