source: rtems/cpukit/itron/src/mbox.c @ 5e96e917

4.104.114.84.95
Last change on this file since 5e96e917 was 5e96e917, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 15:24:11

Updated Mailbox Manager submitted and split into multiple files.

  • Property mode set to 100644
File size: 1.5 KB
Line 
1/*
2 *  ITRON 3.0 Mailbox Manager
3 *
4 *  The license and distribution terms for this file may be
5 *  found in the file LICENSE in this distribution or at
6 *  http://www.OARcorp.com/rtems/license.html.
7 *
8 *  $Id$
9 */
10
11#include <itron.h>
12
13#include <rtems/itron/mbox.h>
14#include <rtems/itron/task.h>
15
16/*   
17 *  _ITRON_Mailbox_Manager_initialization
18 * 
19 *  This routine initializes all mailboxes manager related data structures.
20 *
21 *  Input parameters:
22 *    maximum_mailboxes - maximum configured mailboxes
23 *
24 *  Output parameters:  NONE
25 */
26
27void _ITRON_Mailbox_Manager_initialization(
28  unsigned32 maximum_mailboxes
29)
30{
31  _Objects_Initialize_information(
32    &_ITRON_Mailbox_Information,     /* object information table */
33    OBJECTS_ITRON_MAILBOXES,         /* object class */
34    FALSE,                           /* TRUE if this is a global */
35                                     /*   object class */
36    maximum_mailboxes,               /* maximum objects of this class */
37    sizeof( ITRON_Mailbox_Control ), /* size of this object's control block */
38    FALSE,                           /* TRUE if names for this object */
39                                     /*   are strings */
40    RTEMS_MAXIMUM_NAME_LENGTH,       /* maximum length of each object's */
41                                     /*   name */
42    FALSE                            /* TRUE if this class is threads */
43  );
44   
45  /*
46   *  Register the MP Process Packet routine.
47   *
48   *  NOTE: No MP Support YET in RTEMS ITRON implementation.
49   */
50 
51}
Note: See TracBrowser for help on using the repository browser.