source: rtems/cpukit/posix/src/key.c @ 188c82b

4.104.114.84.95
Last change on this file since 188c82b was 63edcf24, checked in by Joel Sherrill <joel.sherrill@…>, on 11/02/99 at 18:40:30

Split key.c into multiple files.

  • Property mode set to 100644
File size: 619 bytes
Line 
1/*
2 *  $Id$
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 
23void _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}
Note: See TracBrowser for help on using the repository browser.