source: rtems/c/src/exec/posix/src/key.c @ aaf6063

4.104.114.84.95
Last change on this file since aaf6063 was f42b726, checked in by Joel Sherrill <joel.sherrill@…>, on 01/24/01 at 14:17:28

2001-01-24 Ralf Corsepius <corsepiu@…>

  • configure.in: Add src/config.h
  • src/Makefile.am: Add INCLUDES += -I. to pickup config.h
  • src/.cvsignore: Add config.h and stamp-h
  • src/*.c: Add config.h support.
  • Property mode set to 100644
File size: 665 bytes
Line 
1/*
2 *  $Id$
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 
27void _POSIX_Key_Manager_initialization(
28  unsigned32 maximum_keys
29)
30{
31  _Objects_Initialize_information(
32    &_POSIX_Keys_Information,
33    OBJECTS_POSIX_KEYS,
34    FALSE,
35    maximum_keys,
36    sizeof( POSIX_Keys_Control ),
37    FALSE,
38    0,
39    FALSE
40  );
41}
Note: See TracBrowser for help on using the repository browser.