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

4.115
Last change on this file since b767683a was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 1.2 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/system.h>
25#include <rtems/config.h>
26#include <rtems/rtems/support.h>
27#include <rtems/score/thread.h>
28#include <rtems/extensionimpl.h>
29
30void _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}
Note: See TracBrowser for help on using the repository browser.