source: rtems/cpukit/sapi/src/itronapi.c @ e06ecec5

4.104.115
Last change on this file since e06ecec5 was e06ecec5, checked in by Joel Sherrill <joel.sherrill@…>, on 12/17/08 at 22:12:24

2008-12-17 Joel Sherrill <joel.sherrill@…>

  • itron/include/rtems/itron/config.h, itron/include/rtems/itron/eventflags.h, itron/include/rtems/itron/fmempool.h, itron/include/rtems/itron/mbox.h, itron/include/rtems/itron/msgbuffer.h, itron/include/rtems/itron/port.h, itron/include/rtems/itron/semaphore.h, itron/include/rtems/itron/task.h, itron/include/rtems/itron/vmempool.h, itron/src/eventflags.c, itron/src/fmempool.c, itron/src/itroninittasks.c, itron/src/itronsem.c, itron/src/mbox.c, itron/src/msgbuffer.c, itron/src/port.c, itron/src/task.c, itron/src/vmempool.c, sapi/src/itronapi.c: Convert ITRON manager initialization routines to directly pull parameters from configuration table.
  • Property mode set to 100644
File size: 1.8 KB
Line 
1/*
2 *  ITRON API Initialization Support
3 *
4 *  NOTE:
5 *
6 *  COPYRIGHT (c) 1989-2008.
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.rtems.com/license/LICENSE.
12 *
13 *  $Id$
14 */
15
16#if HAVE_CONFIG_H
17#include "config.h"
18#endif
19
20#include <assert.h>
21
22/*
23 *  ITRON_API_INIT is defined so all of the ITRON API
24 *  data will be included in this object file.
25 */
26
27#define ITRON_API_INIT
28
29#include <rtems/system.h>    /* include this before checking RTEMS_ITRON_API */
30#ifdef RTEMS_ITRON_API
31
32#include <rtems/itron.h>
33
34#include <sys/types.h>
35#include <rtems/config.h>
36#include <rtems/score/object.h>
37
38#include <rtems/itron/eventflags.h>
39#include <rtems/itron/fmempool.h>
40#include <rtems/itron/itronapi.h>
41#include <rtems/itron/mbox.h>
42#include <rtems/itron/msgbuffer.h>
43#include <rtems/itron/port.h>
44#include <rtems/itron/semaphore.h>
45#include <rtems/itron/task.h>
46#include <rtems/itron/vmempool.h>
47
48/*PAGE
49 *
50 *  _ITRON_API_Initialize
51 *
52 *  XXX
53 */
54
55Objects_Information *_ITRON_Objects[ OBJECTS_ITRON_CLASSES_LAST + 1 ];
56
57void _ITRON_API_Initialize(void)
58{
59  /* XXX need to assert here based on size assumptions */
60
61  assert( sizeof(ID) == sizeof(Objects_Id) );
62
63  /*
64   * Install our API Object Management Table and initialize the
65   * various managers.
66   */
67  _Objects_Information_table[OBJECTS_ITRON_API] = _ITRON_Objects;
68
69  _ITRON_Task_Manager_initialization();
70  _ITRON_Semaphore_Manager_initialization();
71  _ITRON_Eventflags_Manager_initialization();
72  _ITRON_Fixed_memory_pool_Manager_initialization();
73  _ITRON_Mailbox_Manager_initialization();
74  _ITRON_Message_buffer_Manager_initialization();
75  _ITRON_Port_Manager_initialization();
76  _ITRON_Variable_memory_pool_Manager_initialization();
77}
78
79#endif
80/* end of file */
Note: See TracBrowser for help on using the repository browser.