source: rtems/cpukit/itron/include/rtems/itron/vmempool.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.2 KB
Line 
1/*
2 *  COPYRIGHT (c) 1989-1999.
3 *  On-Line Applications Research Corporation (OAR).
4 *
5 *  The license and distribution terms for this file may be
6 *  found in the file LICENSE in this distribution or at
7 *  http://www.OARcorp.com/rtems/license.html.
8 *
9 *  $Id$
10 */
11
12#ifndef __RTEMS_ITRON_VARIABLE_MEMORYPOOL_h_
13#define __RTEMS_ITRON_VARIABLE_MEMORYPOOL_h_
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19#include <rtems/itron/object.h>
20
21/*
22 *  The following defines the control block used to manage each variable
23 *  memory pool.
24 */
25
26typedef struct {
27  ITRON_Objects_Control   Object;
28  unsigned32              XXX_more_stuff_goes_here;
29}   ITRON_Variable_memory_pool_Control;
30
31/*
32 *  The following defines the information control block used to manage
33 *  this class of objects.
34 */
35
36ITRON_EXTERN Objects_Information  _ITRON_Variable_memory_pool_Information;
37
38/*
39 *  _ITRON_Variable_memory_pool_Manager_initialization
40 *
41 *  DESCRIPTION:
42 *
43 *  This routine performs the initialization necessary for this manager.
44 */
45
46void _ITRON_Variable_memory_pool_Manager_initialization(
47  unsigned32 maximum_variable_memory_pools
48);
49
50/*
51 *  XXX insert private stuff here
52 */
53
54#include <rtems/itron/vmempool.inl>
55
56#ifdef __cplusplus
57}
58#endif
59
60#endif
61/* end of include file */
62
Note: See TracBrowser for help on using the repository browser.