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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [posix/] [src/] [key.c] - Blame information for rev 1026

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1026 ivang
/*
2
 *  key.c,v 1.11 2002/07/01 22:33:47 joel Exp
3
 */
4
 
5
#if HAVE_CONFIG_H
6
#include "config.h"
7
#endif
8
 
9
#include <errno.h>
10
#include <limits.h>
11
#include <pthread.h>
12
#include <string.h>
13
 
14
#include <rtems/system.h>
15
#include <rtems/score/thread.h>
16
#include <rtems/score/wkspace.h>
17
#include <rtems/posix/key.h>
18
 
19
/*
20
 *  _POSIX_Key_Manager_initialization
21
 *
22
 *  DESCRIPTION:
23
 *
24
 *  This routine performs the initialization necessary for this manager.
25
 */
26
 
27
void _POSIX_Key_Manager_initialization(
28
  unsigned32 maximum_keys
29
)
30
{
31
  _Objects_Initialize_information(
32
    &_POSIX_Keys_Information,   /* object information table */
33
    OBJECTS_POSIX_API,          /* object API */
34
    OBJECTS_POSIX_KEYS,         /* object class */
35
    maximum_keys,               /* maximum objects of this class */
36
    sizeof( POSIX_Keys_Control ),
37
                                /* size of this object's control block */
38
    FALSE,                      /* TRUE if names for this object are strings */
39
 
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
}

powered by: WebSVN 2.1.0

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