source: rtems/c/src/exec/itron/src/itronsem.c @ 5e77d129

4.104.114.84.95
Last change on this file since 5e77d129 was df49c60, checked in by Joel Sherrill <joel.sherrill@…>, on 06/12/00 at 15:00:15

Merged from 4.5.0-beta3a

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