source: rtems/cpukit/itron/include/rtems/itron/config.h @ 9d9a3dd

4.104.114.84.95
Last change on this file since 9d9a3dd was 9d9a3dd, checked in by Jennifer Averett <Jennifer.Averett@…>, on 11/17/99 at 16:47:58

+ Updated copyright information.

  • Property mode set to 100644
File size: 1.7 KB
RevLine 
[352c9b2]1/*  config.h
2 *
3 *  This include file contains the table of user defined configuration
4 *  parameters specific for the ITRON API.
5 *
[9d9a3dd]6 *  COPYRIGHT (c) 1989-1999.
[352c9b2]7 *  On-Line Applications Research Corporation (OAR).
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.OARcorp.com/rtems/license.html.
12 *
13 *  $Id$
14 */
15
16#ifndef __RTEMS_ITRON_CONFIGURATION_h
17#define __RTEMS_ITRON_CONFIGURATION_h
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23/*
24 *  XXX
25 *
26 *  The following records define the Configuration Table.  The
27 *  information contained in this table is required in all
28 *  RTEMS systems, whether single or multiprocessor.  This
29 *  table primarily defines the following:
30 *
31 *     + required number of each object type
32 */
33
34/*
35 *  For now, we are only allowing the user to specify the entry point
36 *  and stack size for ITRON initialization threads.
37 */
38
39typedef struct {
40  ID          id;
41  T_CTSK      attributes;
42} itron_initialization_tasks_table;
43
44typedef struct {
45  int                                 maximum_tasks;
46  int                                 maximum_semaphores;
47  int                                 maximum_eventflags;
48  int                                 maximum_mailboxes;
49  int                                 maximum_message_buffers;
50  int                                 maximum_ports;
51  int                                 maximum_memory_pools;
52  int                                 maximum_fixed_memory_pools;
53  int                                 number_of_initialization_tasks;
54  itron_initialization_tasks_table   *User_initialization_tasks_table;
55} itron_api_configuration_table;
56
57#ifdef __cplusplus
58}
59#endif
60
61#endif
62/* end of include file */
Note: See TracBrowser for help on using the repository browser.