source: rtems/cpukit/itron/src/msgbuffer.c @ de05cbb9

4.104.114.84.95
Last change on this file since de05cbb9 was f42b726, checked in by Joel Sherrill <joel.sherrill@…>, on 01/24/01 at 14:17:28

2001-01-24 Ralf Corsepius <corsepiu@…>

  • configure.in: Add src/config.h
  • src/Makefile.am: Add INCLUDES += -I. to pickup config.h
  • src/.cvsignore: Add config.h and stamp-h
  • src/*.c: Add config.h support.
  • Property mode set to 100644
File size: 1.8 KB
Line 
1/*
2 *  ITRON Message Buffer Manager
3 *
4 *  COPYRIGHT (c) 1989-1999.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.OARcorp.com/rtems/license.html.
10 *
11 *  $Id$
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#include <itron.h>
19
20#include <rtems/itron/msgbuffer.h>
21#include <rtems/itron/task.h>
22
23/*   
24 *  _ITRON_Message_buffer_Manager_initialization
25 * 
26 *  This routine initializes all message buffer manager related data
27 *  structures.
28 *
29 *  Input parameters:
30 *    maximum_message_buffers - maximum configured message buffers
31 *
32 *  Output parameters:  NONE
33 */
34
35void _ITRON_Message_buffer_Manager_initialization(
36  unsigned32 maximum_message_buffers
37)
38{
39  _Objects_Initialize_information(
40    &_ITRON_Message_buffer_Information, /* object information table */
41    OBJECTS_ITRON_MESSAGE_BUFFERS,      /* object class */
42    FALSE,                              /* TRUE if this is a
43                                           global object class */
44    maximum_message_buffers,            /* maximum objects of this class */
45    sizeof( ITRON_Message_buffer_Control ),  /* size of this
46                                                object's control
47                                                block */
48    FALSE,                         /* TRUE if names for this
49                                      object are strings */
50    ITRON_MAXIMUM_NAME_LENGTH,     /* maximum length of each
51                                      object's name */
52    FALSE                          /* TRUE if this class is threads */
53  );
54 
55  /*
56   *  Register the MP Process Packet routine.
57   *
58   *  NOTE: No MP Support YET in RTEMS ITRON implementation.
59   */
60}
61
Note: See TracBrowser for help on using the repository browser.