source: rtems/cpukit/itron/src/cre_sem.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: 2.2 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#if HAVE_CONFIG_H
13#include "config.h"
14#endif
15
16#include <itron.h>
17
18#include <rtems/itron/semaphore.h>
19#include <rtems/itron/task.h>
20#include <rtems/score/tod.h>
21
22/*
23 *  cre_sem - Create Semaphore
24 *
25 *  This function implements the ITRON 3.0 cre_sem() service.
26 */
27
28ER cre_sem(
29  ID      semid,
30  T_CSEM *pk_csem
31)
32{
33  CORE_semaphore_Attributes   the_semaphore_attributes;
34  ITRON_Semaphore_Control    *the_semaphore;
35
36  /*
37   *  Bad pointer to the attributes structure
38   */
39
40  if ( !pk_csem )
41    return E_PAR;
42
43  /*
44   *  Bits were set that were note defined.
45   */
46
47  if ( pk_csem->sematr & _ITRON_SEMAPHORE_UNUSED_ATTRIBUTES )
48    return E_RSATR;
49
50  /*
51   *  Initial semaphore count exceeds the maximum.
52   */
53
54  if ( pk_csem->isemcnt > pk_csem->maxsem )
55    return E_PAR;
56
57  /*
58   *  This error is not in the specification but this condition
59   *  does not make sense.
60   */
61
62  if ( pk_csem->maxsem == 0 )
63    return E_PAR;
64
65  _Thread_Disable_dispatch();             /* prevents deletion */
66
67  the_semaphore = _ITRON_Semaphore_Allocate( semid );
68  if ( !the_semaphore ) {
69    _Thread_Enable_dispatch();
70    return _ITRON_Semaphore_Clarify_allocation_id_error( semid );
71  }
72
73  if ( pk_csem->sematr & TA_TPRI )
74    the_semaphore_attributes.discipline = CORE_SEMAPHORE_DISCIPLINES_PRIORITY;
75  else
76    the_semaphore_attributes.discipline = CORE_SEMAPHORE_DISCIPLINES_FIFO;
77
78  the_semaphore_attributes.maximum_count = pk_csem->maxsem;
79
80  _CORE_semaphore_Initialize(
81    &the_semaphore->semaphore,
82    OBJECTS_ITRON_SEMAPHORES,
83    &the_semaphore_attributes,
84    pk_csem->isemcnt,
85    NULL                           /* Multiprocessing not supported */
86  );
87
88  _ITRON_Objects_Open( &_ITRON_Semaphore_Information, &the_semaphore->Object );
89
90  /*
91   *  If multiprocessing were supported, this is where we would announce
92   *  the existence of the semaphore to the rest of the system.
93   */
94
95#if defined(RTEMS_MULTIPROCESSING)
96#endif
97
98  _Thread_Enable_dispatch();
99  return E_OK;
100}
Note: See TracBrowser for help on using the repository browser.