source: rtems/c/src/exec/posix/include/rtems/posix/config.h @ e6d4b1d

4.104.114.84.95
Last change on this file since e6d4b1d was e6d4b1d, checked in by Joel Sherrill <joel.sherrill@…>, on 05/28/96 at 13:13:34

added initial posix configuration support

  • Property mode set to 100644
File size: 1.4 KB
Line 
1/*  config.h
2 *
3 *  This include file contains the table of user defined configuration
4 *  parameters specific for the POSIX API.
5 *
6 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
7 *  On-Line Applications Research Corporation (OAR).
8 *  All rights assigned to U.S. Government, 1994.
9 *
10 *  This material may be reproduced by or for the U.S. Government pursuant
11 *  to the copyright license under the clause at DFARS 252.227-7013.  This
12 *  notice must appear in all copies of this file and its derivatives.
13 *
14 *  $Id$
15 */
16
17#ifndef __RTEMS_POSIX_CONFIGURATION_h
18#define __RTEMS_POSIX_CONFIGURATION_h
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24/*
25 *  XXX
26 *
27 *  The following records define the Configuration Table.  The
28 *  information contained in this table is required in all
29 *  RTEMS systems, whether single or multiprocessor.  This
30 *  table primarily defines the following:
31 *
32 *     + required number of each object type
33 */
34
35/* XXX fix me */
36typedef int posix_initialization_tasks_table;
37
38typedef struct {
39  int                               maximum_threads;
40  int                               maximum_mutexes;
41  int                               maximum_condition_variables;
42  int                               number_of_initialization_tasks;
43  posix_initialization_tasks_table *User_initialization_tasks_table;
44} posix_api_configuration_table;
45
46#ifdef __cplusplus
47}
48#endif
49
50#endif
51/* end of include file */
Note: See TracBrowser for help on using the repository browser.