source: rtems/cpukit/itron/include/rtems/itron/fmempool.h @ 20f78a3

4.104.114.84.95
Last change on this file since 20f78a3 was 20f78a3, checked in by Ralf Corsepius <ralf.corsepius@…>, on 03/23/04 at 13:13:17

2004-03-23 Ralf Corsepius <ralf_corsepius@…>

  • itron/include/itronsys/mbox.h, itron/include/itronsys/types.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/inline/rtems/itron/semaphore.inl, itron/macros/rtems/itron/semaphore.inl, itron/src/eventflags.c, itron/src/fmempool.c, itron/src/itronsem.c, itron/src/mbox.c, itron/src/msgbuffer.c, itron/src/port.c, itron/src/snd_mbx.c, itron/src/task.c, itron/src/trcv_mbx.c, itron/src/vmempool.c: Convert to using c99 fixed size types.
  • 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.rtems.com/license/LICENSE.
8 *
9 *  $Id$
10 */
11
12#ifndef __RTEMS_ITRON_FIXED_MEMORYPOOL_h_
13#define __RTEMS_ITRON_FIXED_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
23 *  fixed memory pool.
24 */
25
26typedef struct {
27  ITRON_Objects_Control   Object;
28  uint32_t                XXX_more_stuff_goes_here;
29}   ITRON_Fixed_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_Fixed_memory_pool_Information;
37
38/*
39 *  _ITRON_Fixed_memory_pool_Manager_initialization
40 *
41 *  DESCRIPTION:
42 *
43 *  This routine performs the initialization necessary for this manager.
44 */
45
46void _ITRON_Fixed_memory_pool_Manager_initialization(
47  uint32_t   maximum_fixed_memory_pools
48);
49
50/*
51 *  XXX insert private stuff here
52 */
53
54#include <rtems/itron/fmempool.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.