URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [exec/] [posix/] [src/] [key.c] - Rev 173
Compare with Previous | Blame | View Log
/* * $Id: key.c,v 1.2 2001-09-27 11:59:17 chris Exp $ */ #include <errno.h> #include <limits.h> #include <pthread.h> #include <string.h> #include <rtems/system.h> #include <rtems/score/thread.h> #include <rtems/score/wkspace.h> #include <rtems/posix/key.h> /* * _POSIX_Key_Manager_initialization * * DESCRIPTION: * * This routine performs the initialization necessary for this manager. */ void _POSIX_Key_Manager_initialization( unsigned32 maximum_keys ) { _Objects_Initialize_information( &_POSIX_Keys_Information, OBJECTS_POSIX_KEYS, FALSE, maximum_keys, sizeof( POSIX_Keys_Control ), FALSE, 0, FALSE ); }