Changeset 99f9dffa in rtems for cpukit/sapi/src/posixapi.c
- Timestamp:
- 05/29/96 16:05:28 (27 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 0252200
- Parents:
- 019bce7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/sapi/src/posixapi.c
r019bce7 r99f9dffa 45 45 */ 46 46 47 posix_api_configuration_table _POSIX_Default_configuration = { 48 0, /* maximum_threads */ 49 0, /* maximum_mutexes */ 50 0, /* maximum_condition_variables */ 51 0, /* maximum_keys */ 52 0, /* number_of_initialization_tasks */ 53 NULL /* User_initialization_tasks_table */ 54 }; 55 56 47 57 void _POSIX_API_Initialize( 48 58 rtems_configuration_table *configuration_table … … 52 62 53 63 api_configuration = configuration_table->POSIX_api_configuration; 64 if ( !api_configuration ) 65 api_configuration = &_POSIX_Default_configuration; 66 54 67 55 assert( api_configuration );56 68 57 69 _POSIX_Threads_Manager_initialization(
Note: See TracChangeset
for help on using the changeset viewer.