OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [exec/] [itron/] [include/] [rtems/] [itron/] [config.h] - Blame information for rev 173

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*  config.h
2
 *
3
 *  This include file contains the table of user defined configuration
4
 *  parameters specific for the ITRON API.
5
 *
6
 *  COPYRIGHT (c) 1989-1999.
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: config.h,v 1.2 2001-09-27 11:59:12 chris Exp $
14
 */
15
 
16
#ifndef __RTEMS_ITRON_CONFIGURATION_h
17
#define __RTEMS_ITRON_CONFIGURATION_h
18
 
19
#ifdef __cplusplus
20
extern "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
 
39
typedef struct {
40
  ID          id;
41
  T_CTSK      attributes;
42
} itron_initialization_tasks_table;
43
 
44
typedef 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 */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.