source: rtems/cpukit/sapi/src/extension.c @ 4c98a3e

4.115
Last change on this file since 4c98a3e was 4c98a3e, checked in by Christopher Kerl <zargyyoyo@…>, on 12/07/12 at 14:49:54

sapi misc: Clean up Doxygen GCI task #1

http://www.google-melange.com/gci/task/view/google/gci2012/8011204

  • 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.com/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/object.h>
28#include <rtems/score/thread.h>
29#include <rtems/extension.h>
30
31void _Extension_Manager_initialization(void)
32{
33  _Objects_Initialize_information(
34    &_Extension_Information,
35    OBJECTS_CLASSIC_API,                 /* object API */
36    OBJECTS_RTEMS_EXTENSIONS,
37    rtems_configuration_get_maximum_extensions(),
38    sizeof( Extension_Control ),
39    false,                     /* true if the name is a string */
40    RTEMS_MAXIMUM_NAME_LENGTH  /* maximum length of an object name */
41#if defined(RTEMS_MULTIPROCESSING)
42    ,
43    false,                     /* true if this is a global object class */
44    NULL                       /* Proxy extraction support callout */
45#endif
46  );
47}
Note: See TracBrowser for help on using the repository browser.