source: rtems/cpukit/itron/include/rtems/itron/vmempool.h @ 6df1f64

4.104.114.84.95
Last change on this file since 6df1f64 was 6df1f64, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/28/05 at 11:07:14

New header guards.

  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[ed11bb26]1/**
2 * @file rtems/itron/vmempool.h
3 */
4
[352c9b2]5/*
[9d9a3dd]6 *  COPYRIGHT (c) 1989-1999.
7 *  On-Line Applications Research Corporation (OAR).
8 *
[352c9b2]9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
[e49f9e6b]11 *  http://www.rtems.com/license/LICENSE.
[352c9b2]12 *
13 *  $Id$
14 */
15
[6df1f64]16#ifndef _RTEMS_ITRON_VMEMPOOL_H
17#define _RTEMS_ITRON_VMEMPOOL_H
[352c9b2]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 variable
27 *  memory pool.
28 */
29
30typedef struct {
31  ITRON_Objects_Control   Object;
[20f78a3]32  uint32_t                XXX_more_stuff_goes_here;
[352c9b2]33}   ITRON_Variable_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_Variable_memory_pool_Information;
41
42/*
43 *  _ITRON_Variable_memory_pool_Manager_initialization
44 *
45 *  DESCRIPTION:
46 *
47 *  This routine performs the initialization necessary for this manager.
48 */
49
50void _ITRON_Variable_memory_pool_Manager_initialization(
[20f78a3]51  uint32_t   maximum_variable_memory_pools
[352c9b2]52);
53
54/*
55 *  XXX insert private stuff here
56 */
57
58#include <rtems/itron/vmempool.inl>
59
60#ifdef __cplusplus
61}
62#endif
63
64#endif
65/* end of include file */
Note: See TracBrowser for help on using the repository browser.