source: rtems/cpukit/itron/src/msgbuffer.c @ 9d2df2b3

4.104.115
Last change on this file since 9d2df2b3 was 9d2df2b3, checked in by Ralf Corsepius <ralf.corsepius@…>, on 11/03/09 at 05:23:05

Eliminate TRUE/FALSE in favor of true/false.

  • Property mode set to 100644
File size: 1.6 KB
Line 
1/*
2 *  ITRON Message Buffer Manager
3 *
4 *  COPYRIGHT (c) 1989-2008.
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.rtems.com/license/LICENSE.
10 *
11 *  $Id$
12 */
13
14#if HAVE_CONFIG_H
15#include "config.h"
16#endif
17
18#include <rtems/itron.h>
19#include <rtems/config.h>
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:   NONE
30 *
31 *  Output parameters:  NONE
32 */
33
34void _ITRON_Message_buffer_Manager_initialization(void)
35{
36  _Objects_Initialize_information(
37    &_ITRON_Message_buffer_Information, /* object information table */
38    OBJECTS_ITRON_API,                  /* object API */
39    OBJECTS_ITRON_MESSAGE_BUFFERS,      /* object class */
40    Configuration_ITRON_API.maximum_message_buffers,
41                               /* maximum objects of this class */
42    sizeof( ITRON_Message_buffer_Control ),
43                               /* size of this object's control block */
44    false,                     /* true if names for this object are strings */
45    ITRON_MAXIMUM_NAME_LENGTH  /* maximum length of each object's name */
46#if defined(RTEMS_MULTIPROCESSING)
47    ,
48    false,                     /* true if this is a global object class */
49    NULL                       /* Proxy extraction support callout */
50#endif
51  );
52
53  /*
54   *  Register the MP Process Packet routine.
55   *
56   *  NOTE: No MP Support YET in RTEMS ITRON implementation.
57   */
58}
Note: See TracBrowser for help on using the repository browser.