source: rtems/cpukit/sapi/src/extension.c @ 36e92589

4.104.114.84.95
Last change on this file since 36e92589 was 16351f7a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/28/05 at 02:04:21

2005-01-28 Ralf Corsepius <ralf.corsepius@…>

  • sapi/src/debug.c, sapi/src/exinit.c, sapi/src/extension.c, sapi/src/extensioncreate.c, sapi/src/extensiondelete.c, sapi/src/extensionident.c, sapi/src/fatal.c, sapi/src/io.c, sapi/src/itronapi.c, sapi/src/posixapi.c, sapi/src/rtemsapi.c: Include config.h.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
2 *  Extension Manager
3 *
4 *
5 *  COPYRIGHT (c) 1989-2002.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#if HAVE_CONFIG_H
16#include "config.h"
17#endif
18
19#include <rtems/system.h>
20#include <rtems/rtems/support.h>
21#include <rtems/score/object.h>
22#include <rtems/score/thread.h>
23#include <rtems/extension.h>
24
25/*PAGE
26 *
27 *  _Extension_Manager_initialization
28 *
29 *  This routine initializes all extension manager related data structures.
30 *
31 *  Input parameters:
32 *    maximum_extensions - number of extensions to initialize
33 *
34 *  Output parameters:  NONE
35 */
36
37void _Extension_Manager_initialization(
38  uint32_t   maximum_extensions
39)
40{
41  _Objects_Initialize_information(
42    &_Extension_Information,
43    OBJECTS_CLASSIC_API,                 /* object API */
44    OBJECTS_RTEMS_EXTENSIONS,
45    maximum_extensions,
46    sizeof( Extension_Control ),
47    FALSE,                     /* TRUE if the name is a string */
48    RTEMS_MAXIMUM_NAME_LENGTH  /* maximum length of an object name */
49#if defined(RTEMS_MULTIPROCESSING)
50    ,
51    FALSE,                     /* TRUE if this is a global object class */
52    NULL                       /* Proxy extraction support callout */
53#endif
54  );
55}
Note: See TracBrowser for help on using the repository browser.