source: rtems/cpukit/itron/include/rtems/itron/fmempool.h @ 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.2 KB
Line 
1/**
2 * @file rtems/itron/fmempool.h
3 */
4
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#ifndef _RTEMS_ITRON_FMEMPOOL_H
17#define _RTEMS_ITRON_FMEMPOOL_H
18
19#ifdef __cplusplus
20extern "C" {
21#endif
22
23#include <rtems/itron/object.h>
24
25/*
26 *  The following defines the control block used to manage each
27 *  fixed memory pool.
28 */
29
30typedef struct {
31  ITRON_Objects_Control   Object;
32  uint32_t                XXX_more_stuff_goes_here;
33}   ITRON_Fixed_memory_pool_Control;
34
35/*
36 *  The following defines the information control block used to manage
37 *  this class of objects.
38 */
39
40ITRON_EXTERN Objects_Information  _ITRON_Fixed_memory_pool_Information;
41
42/*
43 *  _ITRON_Fixed_memory_pool_Manager_initialization
44 *
45 *  DESCRIPTION:
46 *
47 *  This routine performs the initialization necessary for this manager.
48 */
49
50void _ITRON_Fixed_memory_pool_Manager_initialization(void);
51
52/*
53 *  XXX insert private stuff here
54 */
55
56#include <rtems/itron/fmempool.inl>
57
58#ifdef __cplusplus
59}
60#endif
61
62#endif
63/* end of include file */
Note: See TracBrowser for help on using the repository browser.