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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [exec/] [posix/] [src/] [key.c] - Blame information for rev 173

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*
2
 *  $Id: key.c,v 1.2 2001-09-27 11:59:17 chris Exp $
3
 */
4
 
5
#include <errno.h>
6
#include <limits.h>
7
#include <pthread.h>
8
#include <string.h>
9
 
10
#include <rtems/system.h>
11
#include <rtems/score/thread.h>
12
#include <rtems/score/wkspace.h>
13
#include <rtems/posix/key.h>
14
 
15
/*
16
 *  _POSIX_Key_Manager_initialization
17
 *
18
 *  DESCRIPTION:
19
 *
20
 *  This routine performs the initialization necessary for this manager.
21
 */
22
 
23
void _POSIX_Key_Manager_initialization(
24
  unsigned32 maximum_keys
25
)
26
{
27
  _Objects_Initialize_information(
28
    &_POSIX_Keys_Information,
29
    OBJECTS_POSIX_KEYS,
30
    FALSE,
31
    maximum_keys,
32
    sizeof( POSIX_Keys_Control ),
33
    FALSE,
34
    0,
35
    FALSE
36
  );
37
}

powered by: WebSVN 2.1.0

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