source: rtems/cpukit/itron/src/mbox.c @ 4bf1801

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