OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [exec/] [itron/] [src/] [mbox.c] - Blame information for rev 173

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*
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: mbox.c,v 1.2 2001-09-27 11:59:13 chris Exp $
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
 
30
void _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
    ITRON_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
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.