source: rtems/cpukit/posix/src/cond.c @ 811fae1

4.104.114.84.95
Last change on this file since 811fae1 was 98dca75, checked in by Joel Sherrill <joel.sherrill@…>, on 11/02/99 at 18:25:26

Split condition variables into multiple files.

  • Property mode set to 100644
File size: 916 bytes
Line 
1/*
2 *  $Id$
3 */
4
5#include <pthread.h>
6#include <errno.h>
7
8#include <rtems/system.h>
9#include <rtems/score/object.h>
10#include <rtems/score/states.h>
11#include <rtems/score/watchdog.h>
12#include <rtems/posix/cond.h>
13#include <rtems/posix/time.h>
14#include <rtems/posix/mutex.h>
15
16/*PAGE
17 *
18 *  _POSIX_Condition_variables_Manager_initialization
19 *
20 *  This routine initializes all condition variable manager related data
21 *  structures.
22 *
23 *  Input parameters:
24 *    maximum_condition_variables - maximum configured condition_variables
25 *
26 *  Output parameters:  NONE
27 */
28 
29void _POSIX_Condition_variables_Manager_initialization(
30  unsigned32 maximum_condition_variables
31)
32{
33  _Objects_Initialize_information(
34    &_POSIX_Condition_variables_Information,
35    OBJECTS_POSIX_CONDITION_VARIABLES,
36    TRUE,
37    maximum_condition_variables,
38    sizeof( POSIX_Condition_variables_Control ),
39    FALSE,
40    0,
41    FALSE
42  );
43}
Note: See TracBrowser for help on using the repository browser.