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

4.104.114.84.95
Last change on this file since 7fc3029 was dd32d883, checked in by Joel Sherrill <joel.sherrill@…>, on 05/29/96 at 22:46:05

posix initialization threads table was misnamed "posix initialization
tasks table"

  • Property mode set to 100644
File size: 1.6 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/*
36 *  For now, we are only allowing the user to specify the entry point
37 *  for posix initialization threads.
38 */
39
40typedef struct {
41  void       *(*entry)(void *);
42} posix_initialization_threads_table;
43
44typedef struct {
45  int                                 maximum_threads;
46  int                                 maximum_mutexes;
47  int                                 maximum_condition_variables;
48  int                                 maximum_keys;
49  int                                 number_of_initialization_tasks;
50  posix_initialization_threads_table *User_initialization_tasks_table;
51} posix_api_configuration_table;
52
53#ifdef __cplusplus
54}
55#endif
56
57#endif
58/* end of include file */
Note: See TracBrowser for help on using the repository browser.