source: rtems/cpukit/rtems/include/rtems/rtems/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.6 KB
Line 
1/*  config.h
2 *
3 *  This include file contains the table of user defined configuration
4 *  parameters specific for the RTEMS 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_RTEMS_CONFIGURATION_h
18#define __RTEMS_RTEMS_CONFIGURATION_h
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24#include <rtems/rtems/types.h>
25#include <rtems/rtems/tasks.h>
26
27/*
28 *  The following records define the Configuration Table.  The
29 *  information contained in this table is required in all
30 *  RTEMS systems, whether single or multiprocessor.  This
31 *  table primarily defines the following:
32 *
33 *     + required number of each object type
34 */
35
36typedef struct {
37  unsigned32                        maximum_tasks;
38  unsigned32                        maximum_timers;
39  unsigned32                        maximum_semaphores;
40  unsigned32                        maximum_message_queues;
41  unsigned32                        maximum_partitions;
42  unsigned32                        maximum_regions;
43  unsigned32                        maximum_ports;
44  unsigned32                        maximum_periods;
45  unsigned32                        number_of_initialization_tasks;
46  rtems_initialization_tasks_table *User_initialization_tasks_table;
47} rtems_api_configuration_table;
48
49#ifdef __cplusplus
50}
51#endif
52
53#endif
54/* end of include file */
Note: See TracBrowser for help on using the repository browser.