source: rtems/cpukit/itron/src/mbox.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.6 KB
Line 
1/*
2 *  ITRON 3.0 Mailbox 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/mbox.h>
21#include <rtems/itron/task.h>
22
23/*   
24 *  _ITRON_Mailbox_Manager_initialization
25 * 
26 *  This routine initializes all mailboxes manager related data structures.
27 *
28 *  Input parameters:
29 *    maximum_mailboxes - maximum configured mailboxes
30 *
31 *  Output parameters:  NONE
32 */
33
34void _ITRON_Mailbox_Manager_initialization(
35  unsigned32 maximum_mailboxes
36)
37{
38  _Objects_Initialize_information(
39    &_ITRON_Mailbox_Information,     /* object information table */
40    OBJECTS_ITRON_MAILBOXES,         /* object class */
41    FALSE,                           /* TRUE if this is a global */
42                                     /*   object class */
43    maximum_mailboxes,               /* maximum objects of this class */
44    sizeof( ITRON_Mailbox_Control ), /* size of this object's control block */
45    FALSE,                           /* TRUE if names for this object */
46                                     /*   are strings */
47    ITRON_MAXIMUM_NAME_LENGTH,       /* maximum length of each object's */
48                                     /*   name */
49    FALSE                            /* TRUE if this class is threads */
50  );
51   
52  /*
53   *  Register the MP Process Packet routine.
54   *
55   *  NOTE: No MP Support YET in RTEMS ITRON implementation.
56   */
57 
58}
Note: See TracBrowser for help on using the repository browser.