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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [itron/] [src/] [cre_sem.c] - Blame information for rev 1771

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1026 ivang
/*
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
 *  cre_sem.c,v 1.4 2002/07/01 22:35:43 joel Exp
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
 
28
ER 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
    &the_semaphore_attributes,
83
    pk_csem->isemcnt
84
  );
85
 
86
  _ITRON_Objects_Open( &_ITRON_Semaphore_Information, &the_semaphore->Object );
87
 
88
  /*
89
   *  If multiprocessing were supported, this is where we would announce
90
   *  the existence of the semaphore to the rest of the system.
91
   */
92
 
93
#if defined(RTEMS_MULTIPROCESSING)
94
#endif
95
 
96
  _Thread_Enable_dispatch();
97
  return E_OK;
98
}

powered by: WebSVN 2.1.0

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