OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [sapi/] [src/] [extension.c] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1026 ivang
/*
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.OARcorp.com/rtems/license.html.
11
 *
12
 *  extension.c,v 1.15 2002/07/01 22:31:29 joel Exp
13
 */
14
 
15
#include <rtems/system.h>
16
#include <rtems/rtems/support.h>
17
#include <rtems/score/object.h>
18
#include <rtems/score/thread.h>
19
#include <rtems/extension.h>
20
 
21
/*PAGE
22
 *
23
 *  _Extension_Manager_initialization
24
 *
25
 *  This routine initializes all extension manager related data structures.
26
 *
27
 *  Input parameters:
28
 *    maximum_extensions - number of extensions to initialize
29
 *
30
 *  Output parameters:  NONE
31
 */
32
 
33
void _Extension_Manager_initialization(
34
  unsigned32 maximum_extensions
35
)
36
{
37
  _Objects_Initialize_information(
38
    &_Extension_Information,
39
    OBJECTS_CLASSIC_API,                 /* object API */
40
    OBJECTS_RTEMS_EXTENSIONS,
41
    maximum_extensions,
42
    sizeof( Extension_Control ),
43
    FALSE,                     /* TRUE if the name is a string */
44
    RTEMS_MAXIMUM_NAME_LENGTH  /* maximum length of an object name */
45
#if defined(RTEMS_MULTIPROCESSING)
46
    ,
47
    FALSE,                     /* TRUE if this is a global object class */
48
    NULL                       /* Proxy extraction support callout */
49
#endif
50
  );
51
}

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.