summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/rtems/config.h
blob: a3e3988cd622ae1f347d91c912d91cb6f23751e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/**
 * @file rtems/rtems/config.h
 *
 * @defgroup ClassicConfig Configuration
 *
 * @ingroup ClassicRTEMS
 * @brief Configuration Table
 *
 * This include file contains the table of user defined configuration
 * parameters specific for the RTEMS API.
 */

/* COPYRIGHT (c) 1989-2013.
 * On-Line Applications Research Corporation (OAR).
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#ifndef _RTEMS_RTEMS_CONFIG_H
#define _RTEMS_RTEMS_CONFIG_H

#include <rtems/rtems/types.h>
#include <rtems/rtems/tasks.h>

#ifdef __cplusplus
extern "C" {
#endif

/**
 *  @defgroup ClassicConfig Configuration
 *
 *  @ingroup ClassicRTEMS
 *
 *  This encapsulates functionality related to the application's configuration
 *  of the Classic API including the maximum number of each class of objects.
 */
/**@{*/

/**
 *  The following records define the Configuration Table.  The
 *  information contained in this table is required in all
 *  RTEMS systems, whether single or multiprocessor.  This
 *  table primarily defines the following:
 *
 *     + required number of each object type
 */
typedef struct {

  /**
   * This field contains the number of Classic API Initialization
   * Tasks which are configured for this application.
   */
  uint32_t                    number_of_initialization_tasks;

  /**
   * This field is the set of Classic API Initialization
   * Tasks which are configured for this application.
   */
  rtems_initialization_tasks_table *User_initialization_tasks_table;
} rtems_api_configuration_table;

/**
 *  @brief RTEMS API Configuration Table
 *
 *  This is the RTEMS API Configuration Table expected to be generated
 *  by confdefs.h.
 */
extern rtems_api_configuration_table Configuration_RTEMS_API;

/**@}*/

uint32_t rtems_configuration_get_maximum_barriers( void );

uint32_t rtems_configuration_get_maximum_message_queues( void );

uint32_t rtems_configuration_get_maximum_partitions( void );

uint32_t rtems_configuration_get_maximum_periods( void );

uint32_t rtems_configuration_get_maximum_ports( void );

uint32_t rtems_configuration_get_maximum_regions( void );

uint32_t rtems_configuration_get_maximum_semaphores( void );

uint32_t rtems_configuration_get_maximum_timers( void );

uint32_t rtems_configuration_get_maximum_tasks( void );

#ifdef __cplusplus
}
#endif

/**@}*/

#endif
/* end of include file */